[SCM] GNU Libtool branch, master, updated. v2.4.3-14-g41548b4

2014-11-03 Thread Gary V. Vaughan
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  41548b4e7a27579129e7655c3230d3cc5d48ecfe (commit)
  from  50a2dc6a12f2a8e86f6c81d12ab66a29f911fffb (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 41548b4e7a27579129e7655c3230d3cc5d48ecfe
Author: Gary V. Vaughan g...@gnu.org
Date:   Mon Nov 3 11:14:24 2014 +

maint: .PHONY rules to protect gmake from pathological file names.

* Makefile.am (.PHONY): Add install-scripts-local,
check-interactive, check-noninteractive-old,
check-noninteractive-new and check-noninteractive.

Signed-off-by: Gary V. Vaughan g...@gnu.org

---

Summary of changes:
 Makefile.am |5 +
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 0d39d66..b47f001 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -510,6 +510,7 @@ install-data-local: $(lt_Makefile_in) install-scripts-local
done
chmod a+x '$(DESTDIR)$(pkgdatadir)/configure'
 
+.PHONY: install-scripts-local
 install-scripts-local: $(lt_Makefile_in)
 ## Inline helper-scripts for installed libtoolize script
@p=`echo libtoolize |sed -e '$(transform)'`; \
@@ -790,10 +791,12 @@ installcheck-local: $(testsuite_deps)
  $(TESTS_ENVIRONMENT) $(INSTALLCHECK_ENVIRONMENT) $(TESTSUITEFLAGS) \
  AUTOTEST_PATH='$(exec_prefix)/bin'
 
+.PHONY: check-noninteractive-old
 check-noninteractive-old:
$(AM_V_at)'$(MAKE)' $(AM_MAKEFLAGS) check-TESTS TESTS='$(TESTS)'
 
 # Run only noninteractive parts of the new testsuite.
+.PHONY: check-noninteractive-new
 check-noninteractive-new: $(testsuite_deps_uninstalled)
$(AM_V_at)$(CD_TESTDIR); \
CONFIG_SHELL='$(SHELL)' '$(SHELL)' $$abs_srcdir/$(TESTSUITE) \
@@ -802,6 +805,7 @@ check-noninteractive-new: $(testsuite_deps_uninstalled)
  $(TESTSUITEFLAGS)
 
 # Run only interactive parts of the new testsuite.
+.PHONY: check-interactive
 check-interactive: $(testsuite_deps_uninstalled)
$(AM_V_at)$(CD_TESTDIR); \
CONFIG_SHELL='$(SHELL)' '$(SHELL)' $$abs_srcdir/$(TESTSUITE) \
@@ -809,6 +813,7 @@ check-interactive: $(testsuite_deps_uninstalled)
  -k interactive -k recursive INNER_TESTSUITEFLAGS=',interactive' \
  $(TESTSUITEFLAGS)
 
+.PHONY: check-noninteractive
 check-noninteractive: check-noninteractive-old check-noninteractive-new
 
 # We need to remove any file droppings left behind by testsuite


hooks/post-receive
-- 
GNU Libtool



[SCM] GNU Libtool branch, master, updated. v2.4.3-15-g5627a7f

2014-11-03 Thread Gary V. Vaughan
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  5627a7f498e07a40b970c3a5ab5e74a5053e956f (commit)
  from  41548b4e7a27579129e7655c3230d3cc5d48ecfe (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 5627a7f498e07a40b970c3a5ab5e74a5053e956f
Author: Gary V. Vaughan g...@gnu.org
Date:   Mon Nov 3 13:05:22 2014 +

configury: create installation dir before writing to it.

* Makefile.am (install-scripts-local): Don't forget to make the
installation target directory before writing to it.
* NO-THANKS: Update.
Reported by Allan McRae

Signed-off-by: Gary V. Vaughan g...@gnu.org

---

Summary of changes:
 Makefile.am |2 ++
 NO-THANKS   |1 +
 2 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index b47f001..38f2dbd 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -515,6 +515,8 @@ install-scripts-local: $(lt_Makefile_in)
 ## Inline helper-scripts for installed libtoolize script
@p=`echo libtoolize |sed -e '$(transform)'`; \
echo  $(SCRIPT_ENV) '$(inline_source)' libtoolize  
'$(DESTDIR)$(bindir)/$$p'; \
+   d=`echo $(DESTDIR)$(bindir)/$$p |$(SED) 's|[^/]*$$||'`; \
+   test -d $$d || $(mkinstalldirs) $$d; \
$(SCRIPT_ENV) '$(inline_source)' libtoolize  
$(DESTDIR)$(bindir)/$$p; \
chmod a+x $(DESTDIR)$(bindir)/$$p
 
diff --git a/NO-THANKS b/NO-THANKS
index 10b84da..2bed9cc 100644
--- a/NO-THANKS
+++ b/NO-THANKS
@@ -66,6 +66,7 @@ Vincent Torri vto...@univ-evry.fr
 ## time with 'git commit --author=...' and other non-patch contributers
 ## below:
 ##
+Allan McRaeal...@archlinux.org
 Andreas Schiffler  aschiff...@ferzkopp.net
 Brent Leback   brent.leb...@st.com
 Camilo La Rota camilo.lar...@ens-lyon.fr


hooks/post-receive
-- 
GNU Libtool