From: Akim Demaille Date: Sun, 27 Oct 2002 18:16:06 +0000 (+0000) Subject: * lib/freeze.mk ($(AUTOM4TE_CFG)): Add a missing dependency on X-Git-Tag: AUTOCONF-2.54b~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=017a1dc5e571e0c5d1df435da3e35a77a55c8ac4;p=thirdparty%2Fautoconf.git * lib/freeze.mk ($(AUTOM4TE_CFG)): Add a missing dependency on autom4te.in that resulted in the need for two `make' runs. --- diff --git a/ChangeLog b/ChangeLog index deb71a348..e31d92bd8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-10-27 Akim Demaille + + * lib/freeze.mk ($(AUTOM4TE_CFG)): Add a missing dependency on + autom4te.in that resulted in the need for two `make' runs. + 2002-10-27 Akim Demaille * configure.ac: Bump to 2.54b. diff --git a/bin/Makefile.in b/bin/Makefile.in index 85e521671..b00cbc4a2 100644 --- a/bin/Makefile.in +++ b/bin/Makefile.in @@ -418,9 +418,9 @@ uninstall-am: uninstall-binSCRIPTS uninstall-info-am pdf-am ps ps-am tags uninstall uninstall-am \ uninstall-binSCRIPTS uninstall-info-am -$(MY_AUTOM4TE): +$(MY_AUTOM4TE): $(top_srcdir)/tests/wrapper.in cd $(top_builddir)/tests && $(MAKE) $(AM_MAKEFLAGS) autom4te -$(AUTOM4TE_CFG): +$(AUTOM4TE_CFG): $(top_srcdir)/lib/autom4te.in cd $(top_builddir)/lib && $(MAKE) $(AM_MAKEFLAGS) autom4te.cfg # When processing the file with diversion disabled, there must be no diff --git a/lib/autoconf/Makefile.in b/lib/autoconf/Makefile.in index d2c72ee21..3125627a8 100644 --- a/lib/autoconf/Makefile.in +++ b/lib/autoconf/Makefile.in @@ -416,9 +416,9 @@ uninstall-am: uninstall-dist_autoconflibDATA uninstall-info-am \ check-local: check-forbidden-patterns autoconf.m4f: $(autoconf_m4f_dependencies) -$(MY_AUTOM4TE): +$(MY_AUTOM4TE): $(top_srcdir)/tests/wrapper.in cd $(top_builddir)/tests && $(MAKE) $(AM_MAKEFLAGS) autom4te -$(AUTOM4TE_CFG): +$(AUTOM4TE_CFG): $(top_srcdir)/lib/autom4te.in cd $(top_builddir)/lib && $(MAKE) $(AM_MAKEFLAGS) autom4te.cfg # When processing the file with diversion disabled, there must be no diff --git a/lib/autoscan/Makefile.in b/lib/autoscan/Makefile.in index b87e56848..f17ea8108 100644 --- a/lib/autoscan/Makefile.in +++ b/lib/autoscan/Makefile.in @@ -328,9 +328,9 @@ uninstall-am: uninstall-info-am uninstall-nodist_autoscanlibDATA pdf-am ps ps-am uninstall uninstall-am uninstall-info-am \ uninstall-nodist_autoscanlibDATA -$(MY_AUTOM4TE): +$(MY_AUTOM4TE): $(top_srcdir)/tests/wrapper.in cd $(top_builddir)/tests && $(MAKE) $(AM_MAKEFLAGS) autom4te -$(AUTOM4TE_CFG): +$(AUTOM4TE_CFG): $(top_srcdir)/lib/autom4te.in cd $(top_builddir)/lib && $(MAKE) $(AM_MAKEFLAGS) autom4te.cfg # When processing the file with diversion disabled, there must be no diff --git a/lib/autotest/Makefile.in b/lib/autotest/Makefile.in index 2d5929fc9..536d7b2e8 100644 --- a/lib/autotest/Makefile.in +++ b/lib/autotest/Makefile.in @@ -409,9 +409,9 @@ uninstall-am: uninstall-dist_autotestlibDATA uninstall-info-am \ check-local: check-forbidden-patterns autotest.m4f: $(autotest_m4f_dependencies) -$(MY_AUTOM4TE): +$(MY_AUTOM4TE): $(top_srcdir)/tests/wrapper.in cd $(top_builddir)/tests && $(MAKE) $(AM_MAKEFLAGS) autom4te -$(AUTOM4TE_CFG): +$(AUTOM4TE_CFG): $(top_srcdir)/lib/autom4te.in cd $(top_builddir)/lib && $(MAKE) $(AM_MAKEFLAGS) autom4te.cfg # When processing the file with diversion disabled, there must be no diff --git a/lib/freeze.mk b/lib/freeze.mk index ec765d2b1..f40c60992 100644 --- a/lib/freeze.mk +++ b/lib/freeze.mk @@ -29,11 +29,11 @@ SUFFIXES = .m4 .m4f # others) to `false'. But we _ship_ tests/autom4te, so it doesn't # apply to us. MY_AUTOM4TE = $(top_builddir)/tests/autom4te -$(MY_AUTOM4TE): +$(MY_AUTOM4TE): $(top_srcdir)/tests/wrapper.in cd $(top_builddir)/tests && $(MAKE) $(AM_MAKEFLAGS) autom4te AUTOM4TE_CFG = $(top_builddir)/lib/autom4te.cfg -$(AUTOM4TE_CFG): +$(AUTOM4TE_CFG): $(top_srcdir)/lib/autom4te.in cd $(top_builddir)/lib && $(MAKE) $(AM_MAKEFLAGS) autom4te.cfg # When processing the file with diversion disabled, there must be no diff --git a/lib/m4sugar/Makefile.in b/lib/m4sugar/Makefile.in index 059e572f7..88edc5791 100644 --- a/lib/m4sugar/Makefile.in +++ b/lib/m4sugar/Makefile.in @@ -424,9 +424,9 @@ check-local: check-forbidden-patterns m4sugar.m4f: $(m4sugar_m4f_dependencies) m4sh.m4f: $(m4sh_m4f_dependencies) -$(MY_AUTOM4TE): +$(MY_AUTOM4TE): $(top_srcdir)/tests/wrapper.in cd $(top_builddir)/tests && $(MAKE) $(AM_MAKEFLAGS) autom4te -$(AUTOM4TE_CFG): +$(AUTOM4TE_CFG): $(top_srcdir)/lib/autom4te.in cd $(top_builddir)/lib && $(MAKE) $(AM_MAKEFLAGS) autom4te.cfg # When processing the file with diversion disabled, there must be no diff --git a/tests/Makefile.in b/tests/Makefile.in index ca1e3642e..74aab409b 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -382,9 +382,9 @@ uninstall-am: uninstall-info-am maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am uninstall uninstall-am uninstall-info-am -$(MY_AUTOM4TE): +$(MY_AUTOM4TE): $(top_srcdir)/tests/wrapper.in cd $(top_builddir)/tests && $(MAKE) $(AM_MAKEFLAGS) autom4te -$(AUTOM4TE_CFG): +$(AUTOM4TE_CFG): $(top_srcdir)/lib/autom4te.in cd $(top_builddir)/lib && $(MAKE) $(AM_MAKEFLAGS) autom4te.cfg # When processing the file with diversion disabled, there must be no