]> sourceware.org Git - automake.git/commitdiff
* tests/yacc5.test: Check for per-executable YFLAGS.
authorTom Tromey <tromey@redhat.com>
Wed, 20 Jun 2001 16:46:15 +0000 (16:46 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 20 Jun 2001 16:46:15 +0000 (16:46 +0000)
ChangeLog
tests/yacc5.test

index 929bfd1dbb37b31fc8f2cb44c5030a238da86fc1..049d6ca16023d9b004c3ae5373b2c4eb2bcd2c4d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-06-20  Tom Tromey  <tromey@redhat.com>
+
+       * tests/yacc5.test: Check for per-executable YFLAGS.
+
 2001-06-19  Tom Tromey  <tromey@redhat.com>
 
        * tests/Makefile.am (TESTS): Added yacc5.test.
index 4e66f3a770a3e0a1d50dff8ba192374fd92c35a9..82c706f5bc9582a19e88d602f2963424594cc206 100755 (executable)
@@ -44,3 +44,19 @@ $ACLOCAL || exit 1
 $AUTOMAKE -a || exit 1
 
 grep '^sub/maude\.c:' Makefile.in
+
+
+## Try again with per-exe flags.
+
+cat > Makefile.am << 'END'
+bin_PROGRAMS = maude
+maude_SOURCES = sub/maude.y
+## A particularly trickey case.
+maude_YFLAGS = -d
+END
+
+$ACLOCAL || exit 1
+$AUTOMAKE -a || exit 1
+
+grep AM_YFLAGS Makefile.in && exit 1
+exit 0
This page took 0.0313 seconds and 5 git commands to generate.