From e502a178c29dc09e9b3f530ff93783948360ab73 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 17 May 2001 05:31:03 +0000 Subject: [PATCH] For PR automake/174: * tests/Makefile.am (TESTS): Added comment3.test. (XFAIL_TESTS): Likewise. * tests/comment3.test: New file. --- ChangeLog | 5 +++++ tests/Makefile.am | 3 ++- tests/Makefile.in | 3 ++- tests/comment3.test | 16 ++++++++++++++++ 4 files changed, 25 insertions(+), 2 deletions(-) create mode 100755 tests/comment3.test diff --git a/ChangeLog b/ChangeLog index 3fb44fef..73b3580d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2001-05-16 Tom Tromey + 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 diff --git a/tests/Makefile.am b/tests/Makefile.am index 2232fcbf..d7728172 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -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 \ diff --git a/tests/Makefile.in b/tests/Makefile.in index 96a20870..c4f1c489 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -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 index 00000000..01d83231 --- /dev/null +++ b/tests/comment3.test @@ -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 -- 2.43.5