From: Uwe Hermann Date: Thu, 9 Jun 2016 06:40:54 +0000 (+0200) Subject: new-driver: Add missing \n that causes build errors. X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-util.git;a=commitdiff_plain;h=e8ef2b497b9e749e3b6626607fcdb8f88e53c2a7;hp=89b783df04538b4b3276d7de062bf771f8622681 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. --- 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):