aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2016-01-12 10:46:39 +0100
committerMichael Albinus2016-01-12 10:46:39 +0100
commitc82aefc6c45faadc2a0d6a7ffa0f2f6bd3709d62 (patch)
tree1c0ea742a6485909a163f64675d5f5a9b1d58f05
parent696f32c95c96f120ed1dc10193d27b7bc2adaba9 (diff)
downloademacs-c82aefc6c45faadc2a0d6a7ffa0f2f6bd3709d62.tar.gz
emacs-c82aefc6c45faadc2a0d6a7ffa0f2f6bd3709d62.zip
; Fix error in last commit
-rw-r--r--test/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index 388ea5397f9..e8b14319549 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -148,7 +148,7 @@ check-expensive:
148## Re-run all the tests every time. 148## Re-run all the tests every time.
149.PHONY: check-doit 149.PHONY: check-doit
150check-doit: 150check-doit:
151 -@for f in *.log; do test ! -f $$f || mv $$f $$f~; done 151 -@for f in $(LOGFILES); do test ! -f $$f || mv $$f $$f~; done
152 @${MAKE} check-maybe 152 @${MAKE} check-maybe
153 153
154## Only re-run tests whose .log is older than the test. 154## Only re-run tests whose .log is older than the test.