]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
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 3abddcc0ac6d195b24bbab2f7f7a2bf6f8eca0ab..ed10bac827d05374e6c014dbe7ab90aabd369823 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 b68316dde641eada24abb35a3983a748a69d44a1..50538cc7893d783f907504626b4f7562d425d133 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