]> sourceware.org Git - automake.git/commitdiff
For PR automake/174:
authorTom Tromey <tromey@redhat.com>
Thu, 17 May 2001 05:31:03 +0000 (05:31 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 17 May 2001 05:31:03 +0000 (05:31 +0000)
* tests/Makefile.am (TESTS): Added comment3.test.
(XFAIL_TESTS): Likewise.
* tests/comment3.test: New file.

ChangeLog
tests/Makefile.am
tests/Makefile.in
tests/comment3.test [new file with mode: 0755]

index 3fb44fefe9390584a19236e7d27505031c1049e9..73b3580d5721bbd7811a3547bd2901a6d40fcf34 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2001-05-16  Tom Tromey  <tromey@redhat.com>
 
+       For PR automake/174:
+       * tests/Makefile.am (TESTS): Added comment3.test.
+       (XFAIL_TESTS): Likewise.
+       * tests/comment3.test: New file.
+
        Fix for PR automake/175:
        * tests/Makefile.am (XFAIL_TESTS): Removed make.test.
        * m4/make.m4 (AM_MAKE_INCLUDE): Omit `Entering directory' and
index 2232fcbffd1cb06450137f329684b57c3e834a76..d7728172c619e7dbbb520f3168d8cb1b4f020b82 100644 (file)
@@ -2,7 +2,7 @@
 
 AUTOMAKE_OPTIONS = gnits
 
-XFAIL_TESTS = subdir5.test
+XFAIL_TESTS = subdir5.test comment3.test
 
 TESTS =        \
 acinclude.test \
@@ -49,6 +49,7 @@ colon6.test \
 colon7.test \
 comment.test \
 comment2.test \
+comment3.test \
 compile_f_c_cxx.test \
 cond.test \
 cond2.test \
index 96a208700bb8705faaa2d884e99fd93902f16524..c4f1c489409c1603ec43a467466ce43111b83078 100644 (file)
@@ -70,7 +70,7 @@ install_sh = @install_sh@
 
 AUTOMAKE_OPTIONS = gnits
 
-XFAIL_TESTS = subdir5.test
+XFAIL_TESTS = subdir5.test comment3.test
 
 TESTS = \
 acinclude.test \
@@ -117,6 +117,7 @@ colon6.test \
 colon7.test \
 comment.test \
 comment2.test \
+comment3.test \
 compile_f_c_cxx.test \
 cond.test \
 cond2.test \
diff --git a/tests/comment3.test b/tests/comment3.test
new file mode 100755 (executable)
index 0000000..01d8323
--- /dev/null
@@ -0,0 +1,16 @@
+#! /bin/sh
+
+# Make sure that `#' after a tab is a failure.
+# The Tru64 Unix V5.1 system make will pass these to the
+# shell, which in turn can't find `#' as a command.
+# Sigh.  Some vendors must be destroyed.
+
+. $srcdir/defs || exit 1
+
+cat > Makefile.am << 'END'
+install-data-local:
+       # Tru64 Unix must die
+END
+
+$AUTOMAKE && exit 1
+exit 0
This page took 0.03573 seconds and 5 git commands to generate.