From: Gary V. Vaughan Date: Thu, 5 Aug 2004 06:58:55 +0000 (+0000) Subject: * Makefile.am ($(top_srcdir)/config/ltmain.sh): Actually run X-Git-Tag: release-1-9b~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6836243e0be330587c065bc5a9b8f807ebdf5e39;p=thirdparty%2Flibtool.git * Makefile.am ($(top_srcdir)/config/ltmain.sh): Actually run $(MKSTAMP) before changing directories, or it won't be found. Forgot to save before my last commit :-( --- diff --git a/ChangeLog b/ChangeLog index ca978aad0..71f998931 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2004-08-05 Gary V. Vaughan + * Makefile.am ($(top_srcdir)/config/ltmain.sh): Actually run + $(MKSTAMP) before changing directories, or it won't be found. + Forgot to save before my last commit :-( + * Makefile.am ($(top_srcdir)/m4/ltversion.m4): Since we already did `cd $(top_srcdir)' for this rule, we can't mv ltversion.tmp to the relative $(top_srcdir) again! Also, run $(MKSTAMP) before changing diff --git a/Makefile.am b/Makefile.am index 8f7120d33..398147776 100644 --- a/Makefile.am +++ b/Makefile.am @@ -90,9 +90,9 @@ $(top_srcdir)/m4/ltversion.m4: m4/ltversion.in configure.ac stamp-vcl ## And for similar reasons, ltmain.sh can't be built from config.status. EXTRA_DIST += config/ltmain.sh $(top_srcdir)/config/ltmain.sh: config/ltmain.in configure.ac stamp-vcl + set -- `$(MKSTAMP) < $(top_srcdir)/ChangeLog`; \ cd $(top_srcdir); \ rm -f config/ltmain.tmp; \ - set -- `$(MKSTAMP) < $(top_srcdir)/ChangeLog`; \ input="ltmain.in"; \ $(edit) -e "s,@TIMESTAMP\@,$$1 $$2 $$3,g" \ -e "s,@package_revision\@,$$1,g" \