From e8ef2b497b9e749e3b6626607fcdb8f88e53c2a7 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Thu, 9 Jun 2016 08:40:54 +0200 Subject: [PATCH] new-driver: Add missing \n that causes build errors. Without this \n the Makefile.am contains errors and causes build issues like this: Makefile:3821: *** missing separator. Stop. --- source/new-driver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/new-driver b/source/new-driver index 23fe85b..1f8f91d 100755 --- a/source/new-driver +++ b/source/new-driver @@ -35,7 +35,7 @@ TMPL_HWMAKE_DRIVERLIB = """if HW_{upper} libsigrok_la_SOURCES +=""" for tmpl_file in TMPL_FILES: TMPL_HWMAKE_DRIVERLIB += " \\\nsrc/hardware/{short}/" + tmpl_file -TMPL_HWMAKE_DRIVERLIB += "\nendif" +TMPL_HWMAKE_DRIVERLIB += "\nendif\n" def tmpl(template, names): -- 2.30.2