This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Re: Fail: pr300 (Was: Re: Automake 1.6 Release)
> configure.in:8: error: `Makefile' is already registered with
> AC_CONFIG_FILES or AC_OUTPUT.
Thanks! This is a bug in the testsuite that you can safely ignore.
(Akim: any idea why CVS Autoconf does not print this error anymore?)
I'm checking in the following fix.
Index: ChangeLog
===================================================================
RCS file: /cvs/automake/automake/ChangeLog,v
retrieving revision 1.1778
diff -u -r1.1778 ChangeLog
--- ChangeLog 2002/03/06 06:47:44 1.1778
+++ ChangeLog 2002/03/07 12:18:11
@@ -1,3 +1,9 @@
+2002-03-07 Alexandre Duret-Lutz <duret_g@epita.fr>
+
+ * 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 <tromey@redhat.com>
* configure.in: Upped version to 1.6a.
Index: tests/pr300-lib.test
===================================================================
RCS file: /cvs/automake/automake/tests/pr300-lib.test,v
retrieving revision 1.1
diff -u -r1.1 pr300-lib.test
--- pr300-lib.test 2002/03/05 21:34:15 1.1
+++ pr300-lib.test 2002/03/07 12:18:12
@@ -10,7 +10,7 @@
cat >> configure.in << 'END'
AC_PROG_RANLIB
AC_PROG_CC
-AC_OUTPUT(Makefile)
+AC_OUTPUT
END
cat > Makefile.am << 'END'
Index: tests/pr300-ltlib.test
===================================================================
RCS file: /cvs/automake/automake/tests/pr300-ltlib.test,v
retrieving revision 1.1
diff -u -r1.1 pr300-ltlib.test
--- pr300-ltlib.test 2002/03/05 21:34:15 1.1
+++ pr300-ltlib.test 2002/03/07 12:18:12
@@ -11,7 +11,7 @@
cat >> configure.in << 'END'
AC_PROG_CC
AC_PROG_LIBTOOL
-AC_OUTPUT(Makefile)
+AC_OUTPUT
END
cat > Makefile.am << 'END'
Index: tests/pr300-prog.test
===================================================================
RCS file: /cvs/automake/automake/tests/pr300-prog.test,v
retrieving revision 1.1
diff -u -r1.1 pr300-prog.test
--- pr300-prog.test 2002/03/05 21:34:15 1.1
+++ pr300-prog.test 2002/03/07 12:18:12
@@ -9,7 +9,7 @@
cat >> configure.in << 'END'
AC_PROG_CC
-AC_OUTPUT(Makefile)
+AC_OUTPUT
END
cat > Makefile.am << 'END'
--
Alexandre Duret-Lutz