Buglet-fixing patch installed to temporary branch 'tests-man-fixes', merged to master, and pushed. Bug introduced by my own commit v1.11-225-gcdd3cf3 "Improve and extend tests on man pages support.".
Sorry for the noise, Stefano -*-*-*- 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 deletions(-) diff --git a/ChangeLog b/ChangeLog index e39dc11..a3c9e15 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-12-21 Stefano Lattarini <stefano.lattar...@gmail.com> + + 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 <stefano.lattar...@gmail.com> 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 -- 1.7.1