summaryrefslogtreecommitdiff
path: root/syntax-checks.mk
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-04-18 13:40:59 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-04-18 13:41:06 +0200
commit127adfb531be729e9747b81cbb4bce243bcc6dd3 (patch)
tree4ca0c230cd9657a47ffcd8b8941195d106501ad0 /syntax-checks.mk
parentf46359b42790945e42e78a620e651ce66c2b8833 (diff)
downloadautomake-127adfb531be729e9747b81cbb4bce243bcc6dd3.tar.gz
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 <stefano.lattarini@gmail.com>
Diffstat (limited to 'syntax-checks.mk')
-rw-r--r--syntax-checks.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax-checks.mk b/syntax-checks.mk
index 3a6d9dd9f..5d528f8a8 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.