maintainer-check: do not hang
authorStefano Lattarini <stefano.lattarini@gmail.com>
Wed, 18 Apr 2012 11:40:59 +0000 (13:40 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Wed, 18 Apr 2012 11:41:06 +0000 (13:41 +0200)
* 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>
syntax-checks.mk

index 3a6d9dd9ff3a25e03493ff49fc535f7183fb5c5c..5d528f8a8f97fc4bbb1d399e74aa863d3fa840bc 100644 (file)
@@ -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.