automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[FYI] {master} maintcheck: avoid yet more spurious failures (2)


From: Stefano Lattarini
Subject: [FYI] {master} maintcheck: avoid yet more spurious failures (2)
Date: Wed, 11 Apr 2012 21:17:54 +0200

Some maintainer checks were too greedy in processing 'Makefile.am'
files, looking for them even in temporary directories left behind
by the test cases, thus causing occasional spurious failures.

* syntax-checks.mk (ams): Ignore 'Makefile.am' files in the
temporary test directories.

Signed-off-by: Stefano Lattarini <address@hidden>
---
 syntax-checks.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/syntax-checks.mk b/syntax-checks.mk
index 77bb6eb..3a6d9dd 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 '*.am')
+ams := $(shell find $(srcdir) '(' -name '*.dir' -prune ')' -a -name '*.am')
 
 # Some simple checks, and then ordinary check.  These are only really
 # guaranteed to work on my machine.
-- 
1.7.9




reply via email to

[Prev in Thread] Current Thread [Next in Thread]