]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
Since the ansi2knr patch from 2001-10-20 Kevin Ryde, `$U' can
authorAkim Demaille <akim@epita.fr>
Wed, 24 Oct 2001 09:04:18 +0000 (09:04 +0000)
committerAkim Demaille <akim@epita.fr>
Wed, 24 Oct 2001 09:04:18 +0000 (09:04 +0000)
appear in Makefile.in in the clean rule.
* tests/cxxansi.test: Adjust.

ChangeLog
tests/cxxansi.test

index ff2e1db8f94eca7c84836f45d2ca5365bd7f3cc7..d2d133ff1310f9c7e4f5fd5c6884de9233876c83 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-10-24  Akim Demaille  <akim@epita.fr>
+
+       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  <akim@epita.fr>
 
        * automake.in (&am_print_error, &am_file_error, &am_macro_error)
index c27972ef390ad76a23fe9e96131a151b18867fa4..1b43d5e387e611b37f497c360a90bcb361cd5129 100755 (executable)
@@ -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