From: Alexandre Duret-Lutz Date: Thu, 7 Mar 2002 12:26:41 +0000 (+0000) Subject: * tests/pr300-lib.test, tests/pr300-ltlib.test, X-Git-Tag: branchpoint-1-6~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93b18ca5f75890c99baeae133297c1cfbcf0e616;p=thirdparty%2Fautomake.git * tests/pr300-lib.test, tests/pr300-ltlib.test, tests/pr300-prog.test: Use AC_OUTPUT, not AC_OUTPUT(Makefile), so Autoconf doesn't complain about Makefile being output twice. --- diff --git a/ChangeLog b/ChangeLog index e9b65b1b5..84b1b4aa5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-03-07 Alexandre Duret-Lutz + + * tests/pr300-lib.test, tests/pr300-ltlib.test, + tests/pr300-prog.test: Use AC_OUTPUT, not AC_OUTPUT(Makefile), so + Autoconf doesn't complain about Makefile being output twice. + 2002-03-06 Tom Tromey * configure.in: Upped version to 1.6a. diff --git a/tests/pr300-lib.test b/tests/pr300-lib.test index 60161e35c..2b5dfc8f4 100755 --- a/tests/pr300-lib.test +++ b/tests/pr300-lib.test @@ -10,7 +10,7 @@ set -e cat >> configure.in << 'END' AC_PROG_RANLIB AC_PROG_CC -AC_OUTPUT(Makefile) +AC_OUTPUT END cat > Makefile.am << 'END' diff --git a/tests/pr300-ltlib.test b/tests/pr300-ltlib.test index 531aeb442..eb6c6864c 100755 --- a/tests/pr300-ltlib.test +++ b/tests/pr300-ltlib.test @@ -11,7 +11,7 @@ set -e cat >> configure.in << 'END' AC_PROG_CC AC_PROG_LIBTOOL -AC_OUTPUT(Makefile) +AC_OUTPUT END cat > Makefile.am << 'END' diff --git a/tests/pr300-prog.test b/tests/pr300-prog.test index cc455cc16..ed96be0b1 100755 --- a/tests/pr300-prog.test +++ b/tests/pr300-prog.test @@ -9,7 +9,7 @@ set -e cat >> configure.in << 'END' AC_PROG_CC -AC_OUTPUT(Makefile) +AC_OUTPUT END cat > Makefile.am << 'END'