From: Gordon Matzigkeit Date: Mon, 1 Dec 1997 18:36:19 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release-1-0~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0952657f5337e7b08e21c8343a418b4b83f50445;p=thirdparty%2Flibtool.git *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index 68cfbb7d5..e71142de7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ Mon Dec 1 00:50:37 1997 Gordon Matzigkeit + * Makefile.am ($(srcdir)/ltconfig, $(srcdir)/ltmain.sh): Rewrite + these rules so that they are parallelizable. Reported by Jim + Meyering. + * ltconfig.in (ltecho): We need special handling to quote the `echo' variable itself. From Alexandre Oliva. diff --git a/Makefile.am b/Makefile.am index e9e8fcb2c..7d5f2b351 100644 --- a/Makefile.am +++ b/Makefile.am @@ -42,19 +42,20 @@ libtoolize: libtoolize.in $(top_builddir)/config.status CONFIG_FILES=libtoolize CONFIG_HEADERS= $(top_builddir)/config.status chmod +x libtoolize -# These depend on configure.in (rather then config.status) so that version -# numbers are correctly updated. -# This way, they aren't regenerated after people configure the package. -$(srcdir)/ltconfig: ltconfig.in configure.in +$(srcdir)/ltconfig: ltconfig.in $(top_builddir)/config.status CONFIG_FILES=ltconfig CONFIG_HEADERS= $(top_builddir)/config.status AWK=@AWK@ $(top_srcdir)/lineno --delete ltconfig chmod +x ltconfig - test "$(srcdir)" = . || mv ltconfig $(srcdir)/ltconfig + test "$(srcdir)" = . || \ + (cmp -s ltconfig $(srcdir)/ltconfig && rm -f ltconfig) || \ + mv -f ltconfig $(srcdir)/ltconfig -$(srcdir)/ltmain.sh: ltmain.in configure.in +$(srcdir)/ltmain.sh: ltmain.in $(top_builddir)/config.status CONFIG_FILES=ltmain.sh:ltmain.in CONFIG_HEADERS= \ $(top_builddir)/config.status - test "$(srcdir)" = . || mv ltmain.sh $(srcdir)/ltmain.sh + test "$(srcdir)" = . || \ + (cmp -s ltmain.sh $(srcdir)/ltmain.sh && rm -f ltmain.sh) || \ + mv -f ltmain.sh $(srcdir)/ltmain.sh # Distribute the demo subdirectory. dist-hook: $(demo_distfiles) @@ -117,7 +118,7 @@ maintainer-check-versions: maintainer-release: maintainer-check-versions distcheck cd $(top_srcdir) && $(PRCS) checkin -f $(PACKAGE) cd $(top_srcdir) && $(PRCS) rekey -f $(PACKAGE) configure.in libtool.spec - echo "============================="; \ + @echo "============================="; \ echo "Congratulations! $(PACKAGE)-$(VERSION) is now complete."; \ echo; \ echo "Distribute \`$(PACKAGE)-$(VERSION).tar.gz' to the masses, and don't forget"; \