]> sourceware.org Git - automake.git/commitdiff
* tests/yacc2.test: Don't define several times a variable, as
authorAkim Demaille <akim@epita.fr>
Mon, 9 Apr 2001 09:45:01 +0000 (09:45 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 9 Apr 2001 09:45:01 +0000 (09:45 +0000)
automake complains.

ChangeLog
tests/yacc2.test

index 8583dcceb89cec6c4ed627d51d36933ae12db19d..436fddc0ea96f4cba5316c3106d172831cc6cb89 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-04-09  Akim Demaille  <akim@epita.fr>
+
+       * tests/yacc2.test: Don't define several times a variable, as
+       automake complains.
+
 2001-04-09  Akim Demaille  <akim@epita.fr>
 
        * automake.in (&handle_source_transform): Fix pr72: don't define
index e6f319ed0f34a3bee8173c42579deee0617364ef..9e71d86f5777cf722db96e320b71d7bd06249a6b 100755 (executable)
@@ -15,11 +15,20 @@ bin_PROGRAMS = zardoz
 zardoz_SOURCES = zardoz.y
 END
 
+# Don't redefine several times the same variable.
+cp Makefile.am Makefile.src
+
+
+
+
 $AUTOMAKE || exit 1
 
 # If zardoz.h IS mentioned, fail
 grep 'zardoz.h' Makefile.in > /dev/null && exit 1
 
+
+
+cp Makefile.src Makefile.am
 echo 'AM_YFLAGS = -d' >> Makefile.am
 
 $AUTOMAKE || exit 1
@@ -27,6 +36,9 @@ $AUTOMAKE || exit 1
 # If zardoz.h is NOT mentioned, fail
 grep 'zardoz.h' Makefile.in > /dev/null || exit 1
 
+
+
+cp Makefile.src Makefile.am
 echo 'AM_YFLAGS = ' >> Makefile.am
 
 $AUTOMAKE || exit 1
@@ -34,6 +46,9 @@ $AUTOMAKE || exit 1
 # If zardoz.h IS mentioned, fail
 grep 'zardoz.h' Makefile.in > /dev/null && exit 1
 
+
+
+cp Makefile.src Makefile.am
 echo 'YFLAGS = -d' >> Makefile.am
 
 $AUTOMAKE || exit 1
@@ -41,6 +56,9 @@ $AUTOMAKE || exit 1
 # If zardoz.h is NOT mentioned, fail
 grep 'zardoz.h' Makefile.in > /dev/null || exit 1
 
+
+
+cp Makefile.src Makefile.am
 echo 'YFLAGS = ' >> Makefile.am
 
 $AUTOMAKE || exit 1
This page took 0.038473 seconds and 5 git commands to generate.