]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
tests: avoid '##'-style comments inside recipe commands.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Tue, 16 Nov 2010 18:22:10 +0000 (19:22 +0100)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Tue, 16 Nov 2010 18:22:10 +0000 (19:22 +0100)
* tests/confh.test, tests/confh8.test: Remove
double-hash comments from makefile rule commands, they
are not part of the Automake API.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
tests/confh.test
tests/confh8.test

index 77e12cac710925fed1987da5c3b1c5582be1e145..5ba7777b660b70f77c058f240ee009f5337f8bd5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-11-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       tests: avoid '##'-style comments inside recipe commands.
+       * tests/confh.test, tests/confh8.test: Remove
+       double-hash comments from makefile rule commands, they
+       are not part of the Automake API.
+
 2010-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        tests: work around dash quoting issue in case statements.
index 34674cc1430f2012347b753585323704ea9cdfa5..93badefd6b90abb7e9c334c10787fd42ed4bb7fd 100755 (executable)
@@ -30,10 +30,10 @@ END
 cat > Makefile.am << 'END'
 .PHONY: test1 test2
 test1:
-       @echo DIST_COMMON = $(DIST_COMMON) ## for debugging
+       @echo DIST_COMMON = $(DIST_COMMON)
        echo ' ' $(DIST_COMMON) ' ' | grep '[ /]acconfig\.h '
 test2: distdir
-       ls -l $(distdir)/* ## for debugging
+       ls -l $(distdir)/*
        test -f $(distdir)/acconfig.h
 check-local: test1 test2
 END
index df985ec981ec59692fd90e09223697bd26390ee1..146d2f0598671a84332b9aac4b08922624b8b555 100755 (executable)
@@ -29,7 +29,7 @@ END
 cat > Makefile.am << 'END'
 .PHONY: test0 test1 test2
 test0:
-       @echo DIST_COMMON = $(DIST_COMMON) ## for debugging
+       @echo DIST_COMMON = $(DIST_COMMON)
        echo ' ' $(DIST_COMMON) ' ' | grep '[ /]one\.h\.in '
        echo ' ' $(DIST_COMMON) ' ' | grep '[ /]two\.h\.in '
        : Processed header files should not be distributed.
@@ -42,7 +42,7 @@ test1: all
        test -f one.h
        test -f two.h
 test2: distdir
-       ls -l $(distdir)/* ## for debugging
+       ls -l $(distdir)/*
        test -f $(distdir)/one.h.in
        test -f $(distdir)/two.h.in
        : Processed header files should not be distributed.