From: Stefano Lattarini Date: Wed, 18 Apr 2012 11:40:59 +0000 (+0200) Subject: maintainer-check: do not hang X-Git-Tag: v1.11d~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=127adfb531be729e9747b81cbb4bce243bcc6dd3;p=thirdparty%2Fautomake.git 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 --- 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.