From cf1249a63cd7923b8f31e2fe4d86eaeddb625c5a Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Sat, 25 Sep 2010 03:25:48 +0700 Subject: [PATCH] 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. --- ChangeLog | 9 ++++----- Makefile.am | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3f32b0d3..b171ad89 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 a0135edf..d58c34b8 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