From: Stefano Lattarini Date: Tue, 21 Dec 2010 01:15:08 +0000 (+0100) Subject: man8.test: avoid comments inside recipe commands. X-Git-Tag: ng-0.5a~290^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de054cdf2ce074ff005fc03a30169f22f739d68d;p=thirdparty%2Fautomake.git man8.test: avoid comments inside recipe commands. * tests/man8.test: Remove shell comments from makefile rule commands, as they are not portable to (at least) Tru64 make. --- diff --git a/ChangeLog b/ChangeLog index e39dc113b..afb60f419 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-12-21 Stefano Lattarini + + man8.test: avoid comments inside recipe commands. + * tests/man8.test: Remove shell comments from makefile rule + commands, as they are not portable to (at least) Tru64 make. + 2010-11-08 Stefano Lattarini Improve and extend tests on man pages support. diff --git a/tests/man8.test b/tests/man8.test index 2ef52b4d9..377eeff28 100755 --- a/tests/man8.test +++ b/tests/man8.test @@ -23,7 +23,8 @@ set -e cat > Makefile.am << 'END' dist_man_MANS = foo.1 foo.1: - rm -f $(srcdir)/$@ # fails if $(srcdir) is unwritable +## this 'rm' command will fail if $(srcdir) is unwritable + rm -f $(srcdir)/$@ : > $(srcdir)/$@ END