summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-04-18 15:08:37 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-04-18 15:08:37 +0200
commit41f418b0787c7b574fa702fb1f14546ada4eadc2 (patch)
tree7e44cc30d74a3264e83d60fe8c5f7d8d45b3694a
parent127adfb531be729e9747b81cbb4bce243bcc6dd3 (diff)
downloadautomake-41f418b0787c7b574fa702fb1f14546ada4eadc2.tar.gz
maintainer-check: fix definition of $(ams) again
* syntax-checks.mk (ams): The previous change 'v1.11b-36-g127adfb' solved one problem in the definition of this variable, but also caused it contain the names of all the left-behind 't/*.dir' temporary test directories. Fix that. Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
-rw-r--r--syntax-checks.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax-checks.mk b/syntax-checks.mk
index 5d528f8a8..4d5ab6f5b 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 ')' -o -name '*.am')
+ams := $(shell find $(srcdir) -name '*.dir' -prune -o -name '*.am' -print)
# Some simple checks, and then ordinary check. These are only really
# guaranteed to work on my machine.