automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Fail: pr300 (Was: Re: Automake 1.6 Release)


From: Alexandre Duret-Lutz
Subject: Re: Fail: pr300 (Was: Re: Automake 1.6 Release)
Date: Thu, 07 Mar 2002 13:31:18 +0100
User-agent: Gnus/5.090006 (Oort Gnus v0.06) Emacs/21.1 (i386-debian-linux-gnu)

 > 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  <address@hidden>
+
+       * 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  <address@hidden>
 
        * 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]