automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[FYI] man8.test: avoid comments inside recipe commands


From: Stefano Lattarini
Subject: [FYI] man8.test: avoid comments inside recipe commands
Date: Tue, 21 Dec 2010 02:23:19 +0100
User-agent: KMail/1.13.3 (Linux/2.6.30-2-686; KDE/4.4.4; i686; ; )

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  <address@hidden>
+
+       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  <address@hidden>
 
        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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]