[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, master, updated. v1.11b-36-
From: |
Stefano Lattarini |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, master, updated. v1.11b-36-g127adfb |
Date: |
Wed, 18 Apr 2012 12:02:47 +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=127adfb531be729e9747b81cbb4bce243bcc6dd3
The branch, master has been updated
via 127adfb531be729e9747b81cbb4bce243bcc6dd3 (commit)
from f46359b42790945e42e78a620e651ce66c2b8833 (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 127adfb531be729e9747b81cbb4bce243bcc6dd3
Author: Stefano Lattarini <address@hidden>
Date: Wed Apr 18 13:40:59 2012 +0200
maintainer-check: do not hang
* syntax-checks.mk (ams): The definition of this variable was invoking
the 'find' utility in an incorrect way, which resulted into the variable
being empty, thus reducing coverage in some maintainer check and making
other hang. Fix this.
Signed-off-by: Stefano Lattarini <address@hidden>
-----------------------------------------------------------------------
Summary of changes:
syntax-checks.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/syntax-checks.mk b/syntax-checks.mk
index 3a6d9dd..5d528f8 100644
--- a/syntax-checks.mk
+++ b/syntax-checks.mk
@@ -33,7 +33,7 @@ xtests := $(shell \
xdefs = $(srcdir)/defs $(srcdir)/defs-static.in
-ams := $(shell find $(srcdir) '(' -name '*.dir' -prune ')' -a -name '*.am')
+ams := $(shell find $(srcdir) '(' -name '*.dir' -prune ')' -o -name '*.am')
# Some simple checks, and then ordinary check. These are only really
# guaranteed to work on my machine.
hooks/post-receive
--
GNU Automake
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, master, updated. v1.11b-36-g127adfb,
Stefano Lattarini <=