[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, branch-1.11, updated. v1.11
From: |
Stefano Lattarini |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, branch-1.11, updated. v1.11.3-60-g2d0af4a |
Date: |
Sun, 18 Mar 2012 21:35:01 +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=2d0af4a3b3a1e89bd53ec2c8ea3cd0fc05ae19fd
The branch, branch-1.11 has been updated
via 2d0af4a3b3a1e89bd53ec2c8ea3cd0fc05ae19fd (commit)
via 45ffbe9f8746224daf11a3980d69b10fc0520384 (commit)
from e0f4e162fc62a53a8843a0b1c60ee24ac505699e (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 2d0af4a3b3a1e89bd53ec2c8ea3cd0fc05ae19fd
Merge: e0f4e16 45ffbe9
Author: Stefano Lattarini <address@hidden>
Date: Sun Mar 18 22:25:13 2012 +0100
Merge branch 'maint' into branch-1.11
* maint:
install-mans: avoid spurious failure with NetBSD make
-----------------------------------------------------------------------
Summary of changes:
lib/am/mans.am | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/am/mans.am b/lib/am/mans.am
index b0d5335..b92576d 100644
--- a/lib/am/mans.am
+++ b/lib/am/mans.am
@@ -36,7 +36,7 @@ if %?NOTRANS_MANS%
?!HAVE_NOTRANS? list2=''; \
?HAVE_NOTRANS? list2='%NOTRANS_LIST%'; \
test -n "$(man%SECTION%dir)" \
- && case "$$list1$$list2" in *[^\ ]*) :;; *) false;; esac \
+ && test -n "`echo $$list1$$list2`" \
|| exit 0; \
echo " $(MKDIR_P) '$(DESTDIR)$(man%SECTION%dir)'"; \
$(MKDIR_P) "$(DESTDIR)$(man%SECTION%dir)" || exit 1; \
@@ -77,7 +77,7 @@ if %?TRANS_MANS%
?!HAVE_TRANS? list2=''; \
?HAVE_TRANS? list2='%TRANS_LIST%'; \
test -n "$(man%SECTION%dir)" \
- && case "$$list1$$list2" in *[^\ ]*) :;; *) false;; esac \
+ && test -n "`echo $$list1$$list2`" \
|| exit 0; \
echo " $(MKDIR_P) '$(DESTDIR)$(man%SECTION%dir)'"; \
$(MKDIR_P) "$(DESTDIR)$(man%SECTION%dir)" || exit 1; \
hooks/post-receive
--
GNU Automake
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, branch-1.11, updated. v1.11.3-60-g2d0af4a,
Stefano Lattarini <=