This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Libtool".
The branch, master has been updated
via c77eea5f6c0592423d925131489cc7772e34cf0b (commit)
from a64ea4d8c4934665d0a34f3b269634af0799f875 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit c77eea5f6c0592423d925131489cc7772e34cf0b
Author: Gary V. Vaughan <[email protected]>
Date: Wed Oct 29 12:17:35 2014 +0000
maint: fix prefix and suffix installs for libtoolize.
* Makefile.am (install-data-local): Depend on new
install-scripts-local, and move libtoolize install from here...
(install-scripts-local): ...to here.
Pass libtoolize destination through program transform expression.
(uninstall-hook): Likewise, prior to removal.
* NEWS: Update.
* THANKS: Update.
Reported by Václav Zeman
Signed-off-by: Gary V. Vaughan <[email protected]>
-----------------------------------------------------------------------
Summary of changes:
Makefile.am | 16 +++++++++++-----
NEWS | 5 +++++
THANKS | 1 +
3 files changed, 17 insertions(+), 5 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 77561e1..cd7d61c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -476,7 +476,7 @@ pkgltdl_files = COPYING.LIB \
ltdl.mk \
slist.c
-install-data-local: $(lt_Makefile_in)
+install-data-local: $(lt_Makefile_in) install-scripts-local
@$(NORMAL_INSTALL)
## Don't install over the top of an old pkgdatadir
-rm -rf '$(DESTDIR)$(pkgdatadir)'/*
@@ -508,9 +508,14 @@ install-data-local: $(lt_Makefile_in)
echo " $(INSTALL_DATA) '$(ltdldir)/$$p'
'$(DESTDIR)$(pkgdatadir)/$$p'"; \
$(INSTALL_DATA) "$(ltdldir)/$$p" "$(DESTDIR)$(pkgdatadir)/$$p"; \
done
+ chmod a+x '$(DESTDIR)$(pkgdatadir)/configure'
+
+install-scripts-local: $(lt_Makefile_in)
## Inline helper-scripts for installed libtoolize script
- $(SCRIPT_ENV) '$(inline_source)' libtoolize >
'$(DESTDIR)$(bindir)/libtoolize';
- -chmod a+x '$(DESTDIR)$(pkgdatadir)/configure'
'$(DESTDIR)$(bindir)/libtoolize'
+ @p=`echo libtoolize |sed -e '$(transform)'`; \
+ echo " $(SCRIPT_ENV) '$(inline_source)' libtoolize >
'$(DESTDIR)$(bindir)/$$p'"; \
+ $(SCRIPT_ENV) '$(inline_source)' libtoolize >
"$(DESTDIR)$(bindir)/$$p"; \
+ chmod a+x "$(DESTDIR)$(bindir)/$$p"
## ------------- ##
@@ -592,8 +597,9 @@ uninstall-hook:
echo " rm -f '$(DESTDIR)$(aclocaldir)/$$f'"; \
rm -f "$(DESTDIR)$(aclocaldir)/$$f"; \
done
- @echo " rm -f '$(DESTDIR)$(bindir)/libtoolize'"; \
- rm -f '$(DESTDIR)$(bindir)/libtoolize'
+ @p=`echo libtoolize |sed -e '$(transform)'`; \
+ echo " rm -f '$(DESTDIR)$(bindir)/$$p'"; \
+ rm -f "$(DESTDIR)$(bindir)/$$p"
## ----------- ##
diff --git a/NEWS b/NEWS
index 6740ce6..635aef4 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,11 @@ NEWS - list of user-visible changes between releases of GNU
Libtool
* Noteworthy changes in release ?.? (????-??-??) [?]
+** Bug fixes:
+
+ - Installation of 'libtoolize' once again obeys '--program-prefix',
+ '--program-suffix' and '--program-transform-name' configure options.
+
* Noteworthy changes in release 2.4.3 (2014-10-27) [stable]
diff --git a/THANKS b/THANKS
index 671f7c1..9603adc 100644
--- a/THANKS
+++ b/THANKS
@@ -204,6 +204,7 @@
Tor Lillqvist [email protected]
Ulrich Drepper [email protected]
Warren Dodge [email protected]
+ Václav Zeman [email protected]
Vadim Zeitlin [email protected]
Vincent Lefevre [email protected]
Vincent Torri [email protected]
hooks/post-receive
--
GNU Libtool