From: Akim Demaille Date: Wed, 24 Oct 2001 09:04:18 +0000 (+0000) Subject: Since the ansi2knr patch from 2001-10-20 Kevin Ryde, `$U' can X-Git-Tag: Release-1-5b~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=63ec51e399a92aaf0f0fddf51cb928ca04c991fb;p=thirdparty%2Fautomake.git Since the ansi2knr patch from 2001-10-20 Kevin Ryde, `$U' can appear in Makefile.in in the clean rule. * tests/cxxansi.test: Adjust. --- diff --git a/ChangeLog b/ChangeLog index ff2e1db8f..d2d133ff1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2001-10-24 Akim Demaille + + Since the ansi2knr patch from 2001-10-20 Kevin Ryde, `$U' can + appear in Makefile.in in the clean rule. + + * tests/cxxansi.test: Adjust. + 2001-10-24 Akim Demaille * automake.in (&am_print_error, &am_file_error, &am_macro_error) diff --git a/tests/cxxansi.test b/tests/cxxansi.test index c27972ef3..1b43d5e38 100755 --- a/tests/cxxansi.test +++ b/tests/cxxansi.test @@ -13,7 +13,7 @@ END cat > Makefile.am << 'END' AUTOMAKE_OPTIONS = ansi2knr sbin_PROGRAMS = anonymous -anonymous_SOURCES = doe.C jane.C +anonymous_SOURCES = doe.c jane.C END : > ansi2knr.c @@ -25,5 +25,7 @@ END $ACLOCAL || exit 1 $AUTOMAKE || exit 1 -fgrep '$U' Makefile.in && exit 1 +fgrep 'jane$U' Makefile.in && exit 1 +fgrep 'doe$U' Makefile.in || exit 1 + exit 0