From de054cdf2ce074ff005fc03a30169f22f739d68d Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Tue, 21 Dec 2010 02:15:08 +0100 Subject: [PATCH] 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. --- ChangeLog | 6 ++++++ tests/man8.test | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e39dc11..afb60f4 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 2ef52b4..377eeff 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 -- 2.7.4