From 2fb66ed854b5c57cf6d927e548508934f383c971 Mon Sep 17 00:00:00 2001 From: Guilhem Bonnefille Date: Sat, 23 Jun 2007 16:17:55 +0000 Subject: [PATCH] Suppress warning about backslashed newline at end of line --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index eca0dfe..252ec6e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -9,7 +9,7 @@ authors.h: ../AUTHORS rm -f $@ echo "/* Generated file. */" >> $@ echo "#define AUTHORS \\" >> $@ - sed -e "s/ \*\*.*//" -e 's/^/"/' -e 's/$$/\\n"\\/' $< >> $@ + sed -e "s/ \*\*.*//" -e 's/^/"/' -e 's/$$/\\n"\\/' -e '$$s/\\$$//' $< >> $@ BUILT_SOURCES = authors.h -- 2.11.4.GIT