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 ff2e1db..d2d133f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 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)
        (&am_target_error, &am_line_error, &am_conf_error, &am_file_warning):
        Rename as...
index c27972e..1b43d5e 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