* tests/man8.test: Remove shell comments from makefile rule
commands, as they are not portable to (at least) Tru64 make.
+2010-12-21 Stefano Lattarini <stefano.lattarini@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.lattarini@gmail.com>
Improve and extend tests on man pages support.
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