[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, master, updated. Release-1-
From: |
Ralf Wildenhues |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, master, updated. Release-1-10-173-gf4d1f9e |
Date: |
Sun, 07 Sep 2008 07:22:06 +0000 |
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 Automake".
http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=f4d1f9e29866e785d5d50d9037dade2b773cd71f
The branch, master has been updated
via f4d1f9e29866e785d5d50d9037dade2b773cd71f (commit)
from 120031b8d5f75fd631b96396d2e69fe920455098 (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 f4d1f9e29866e785d5d50d9037dade2b773cd71f
Author: Ralf Wildenhues <address@hidden>
Date: Sun Sep 7 09:11:34 2008 +0200
AIX ranlib dislikes spaces in the argument.
* lib/am/libs.am (install-%DIR%LIBRARIES): Fix instsh.test
failure on AIX due to ranlib and whitespace in the directory.
* THANKS: Update.
Report by John F Trudeau.
Signed-off-by: Ralf Wildenhues <address@hidden>
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 6 ++++++
THANKS | 1 +
lib/am/libs.am | 6 ++++--
3 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 382a11f..78b458b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2008-09-07 Ralf Wildenhues <address@hidden>
+ AIX ranlib dislikes spaces in the argument.
+ * lib/am/libs.am (install-%DIR%LIBRARIES): Fix instsh.test
+ failure on AIX due to ranlib and whitespace in the directory.
+ * THANKS: Update.
+ Report by John F Trudeau.
+
Fail upon install or ranlib failure, part two.
* lib/am/java.am (install-%DIR%JAVA): Fail upon install failure.
* lib/am/lisp.am (install-%DIR%LISP): Likewise.
diff --git a/THANKS b/THANKS
index 718e0b0..2b64ee8 100644
--- a/THANKS
+++ b/THANKS
@@ -143,6 +143,7 @@ Joel N. Weber II address@hidden
Joerg-Martin Schwarz address@hidden
Johan Danielsson address@hidden
Johannes Nicolai address@hidden
+John F Trudeau address@hidden
John Pierce address@hidden
John Ratliff address@hidden
John W. Coomes address@hidden
diff --git a/lib/am/libs.am b/lib/am/libs.am
index 6cd0988..450a105 100644
--- a/lib/am/libs.am
+++ b/lib/am/libs.am
@@ -66,8 +66,10 @@ endif !%?BASE%
if test -f $$p; then \
%BASE?$(am__strip_dir):f=$$p;% \
## Must ranlib after installing because mod time changes.
- echo " $(RANLIB) '$(DESTDIR)$(%NDIR%dir)/$$f'"; \
- $(RANLIB) "$(DESTDIR)$(%NDIR%dir)/$$f" || exit $$?; \
+## cd to target directory because AIX ranlib messes up with whitespace
+## in the argument.
+ echo " ( cd '$(DESTDIR)$(%NDIR%dir)' && $(RANLIB) $$f )"; \
+ ( cd "$(DESTDIR)$(%NDIR%dir)" && $(RANLIB) $$f ) || exit $$?; \
else :; fi; \
done
endif %?INSTALL%
hooks/post-receive
--
GNU Automake
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, master, updated. Release-1-10-173-gf4d1f9e,
Ralf Wildenhues <=