Hello Alexandre, On Thu, Apr 20, 2006 at 02:03:14PM +0200, Alexandre Duret-Lutz wrote: > Stepan> I would suffice if autoconf, when called in 3) updated ./configure. > Stepan> (It presents only minimum of extra work.) > > I don't think it works : > > - if automake is called by a rebuild rule to rebuild one > Makefile.in with a new Autoconf version, all the other > Makefile.ins remain based on the other Autoconf version > > - if autoconf is called by the rebuild rule of configure > then nothing guarantees that the existing Makefile.ins > are compatible.
you are right, thanks for correction. Makefile.in doesn't depend only on configure's sources, but also on the version of Autoconf. It is possible to fix it by replacing the dependency: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) by $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/configure Would you like this amended proposal? Have a nice day, Stepan