From: Gary V. Vaughan Date: Fri, 24 Sep 2010 20:25:48 +0000 (+0700) Subject: CLEANUP: fix error from pushing too far up the branch. X-Git-Tag: v2.4.2.418~328 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf1249a63cd7923b8f31e2fe4d86eaeddb625c5a;p=thirdparty%2Flibtool.git CLEANUP: fix error from pushing too far up the branch. * Makefile.am (install-data-local): Undo character transposition from too early push of untested v2.4-17-gaf74d58. * ChangeLog (2010-09-16): Remove spurious entry. --- diff --git a/ChangeLog b/ChangeLog index 3f32b0d3e..b171ad898 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,8 @@ -2010-09-16 Gary V. Vaughan +2010-09-25 Gary V. Vaughan - maint: use bootstrap script from gnulib. - * bootstrap: Replaced with gnulib script. - * bootstrap.conf: New file with Libtool specific bootstrap - configuration. + CLEANUP: fix error from pushing too far up the branch. + * Makefile.am (install-data-local): Undo character transposition + from too early push of untested v2.4-17-gaf74d58. 2010-09-23 Gary V. Vaughan diff --git a/Makefile.am b/Makefile.am index a0135edf9..d58c34b89 100644 --- a/Makefile.am +++ b/Makefile.am @@ -430,7 +430,7 @@ install-data-local: $(lt_Makefile_in) ## First, put a copy of the libtool m4 macros in the aclocal dir $(mkinstalldirs) $(DESTDIR)$(aclocaldir) @list='$(aclocalfiles)'; for p in $$list; do \ - f=`echo "$$p" |'$(SED') 's|^.*/||'`; \ + f=`echo "$$p" |'$(SED)' 's|^.*/||'`; \ echo " $(INSTALL_DATA) '$(srcdir)/$(macro_dir)/$$f' '$(DESTDIR)$(aclocaldir)/$$f'"; \ $(INSTALL_DATA) "$(srcdir)/$(macro_dir)/$$f" "$(DESTDIR)$(aclocaldir)/$$f"; \ done