[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, maint, updated. v1.11-684-g
From: |
Stefano Lattarini |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, maint, updated. v1.11-684-gea4f1a9 |
Date: |
Sun, 05 Feb 2012 22:14:21 +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=ea4f1a91ac1c11a91a21169125b7ed931a4ab7fe
The branch, maint has been updated
via ea4f1a91ac1c11a91a21169125b7ed931a4ab7fe (commit)
from da0964eb751461516bda1a38b8423cb412b601d6 (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 ea4f1a91ac1c11a91a21169125b7ed931a4ab7fe
Author: Stefano Lattarini <address@hidden>
Date: Sat Jul 23 13:55:20 2011 +0200
test defs: function 'is_newest' now works also with directories
Reported by Jim Meyering against automake master (see bug#9147) and
by Adam Sampson against automake 1.11.3 (see bug#10730).
* tests/defs (is_newest): Call 'find' with the '-prune' option,
so that it won't descend in the directories (which could cause
spurious results).
* THANKS: Update.
Backported from commit v1.11-914-gb6a40fa (originally on master).
-----------------------------------------------------------------------
Summary of changes:
THANKS | 1 +
tests/defs.in | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/THANKS b/THANKS
index fbb7eb4..e6730b4 100644
--- a/THANKS
+++ b/THANKS
@@ -3,6 +3,7 @@ It would not be what it is today without the invaluable help of
these
people:
Adam J. Richter address@hidden
+Adam Sampson address@hidden
Adrian Bunk address@hidden
Akim Demaille address@hidden
Alan Modra address@hidden
diff --git a/tests/defs.in b/tests/defs.in
index 31426f2..4990e30 100644
--- a/tests/defs.in
+++ b/tests/defs.in
@@ -486,7 +486,7 @@ old_timestamp=198309271735.59
# Resolve ties in favor of FILE.
is_newest ()
{
- is_newest_files=`find "$@" -newer "$1"`
+ is_newest_files=`find "$@" -prune -newer "$1"`
test -z "$is_newest_files"
}
hooks/post-receive
--
GNU Automake
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, maint, updated. v1.11-684-gea4f1a9,
Stefano Lattarini <=