backcompat5.test: avoid '##'-style comments inside recipe commands.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Tue, 16 Nov 2010 18:23:09 +0000 (19:23 +0100)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Tue, 16 Nov 2010 18:24:04 +0000 (19:24 +0100)
* tests/backcompat5.test: Remove double-hash comments
from makefile rule commands, they are not part of the
Automake API.  Fixes testsuite failure with Tru64 make.

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

index 3abddcc..ed10bac 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2010-11-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
+       backcompat5.test: avoid '##'-style comments inside recipe commands.
+       * tests/backcompat5.test: Remove double-hash comments
+       from makefile rule commands, they are not part of the
+       Automake API.  Fixes testsuite failure with Tru64 make.
+
        tests: avoid '##'-style comments inside recipe commands.
        * tests/confh.test, tests/confh8.test: Remove
        double-hash comments from makefile rule commands, they
index b68316d..50538cc 100755 (executable)
@@ -63,7 +63,7 @@ END
 
 cat >hacky/Makefile.am <<'END'
 dist-hook:
-       find $(top_distdir) -print ## useful for debugging
+       find $(top_distdir) -print
        chmod a+rx $(top_distdir)/tests/*.test
 END