summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorEric Blake <ebb9@byu.net>2007-09-29 08:56:50 -0600
committerJim Meyering <jim@meyering.net>2007-09-30 09:40:26 +0200
commit17f0d568d3b95576de88d82b1722aa8adb3d0106 (patch)
tree81843ac33651f0886765d53836e20efaeed3c6f6 /build-aux
parent3c98f1d3eec060dc0b484310776abefd28abc89c (diff)
downloadcoreutils-17f0d568d3b95576de88d82b1722aa8adb3d0106.tar.gz
Fix testsuite on cygwin.
* check.mk (%.log): Also allow suffix-less tests, on platforms where $(EXEEXT) is not empty. Signed-off-by: Eric Blake <ebb9@byu.net>
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/ChangeLog5
-rw-r--r--build-aux/check.mk4
2 files changed, 9 insertions, 0 deletions
diff --git a/build-aux/ChangeLog b/build-aux/ChangeLog
index 37f70fede..704f6babb 100644
--- a/build-aux/ChangeLog
+++ b/build-aux/ChangeLog
@@ -1,3 +1,8 @@
+2007-09-29 Eric Blake <ebb9@byu.net>
+
+ * check.mk (%.log): Also allow suffix-less tests, on platforms
+ where $(EXEEXT) is not empty.
+
2007-09-15 Jim Meyering <jim@meyering.net>
* vc-list-files: Remove mercurial support.
diff --git a/build-aux/check.mk b/build-aux/check.mk
index 2f44ec7ff..2a00aa201 100644
--- a/build-aux/check.mk
+++ b/build-aux/check.mk
@@ -97,6 +97,10 @@ rm $@-t
%.log: %$(EXEEXT)
@$(am__check_pre) $${dir}$< $(am__check_post)
+# The exact same commands, but for scripts without extension.
+%.log: %
+ @$(am__check_pre) $${dir}$< $(am__check_post)
+
TEST_LOGS ?= $(TESTS:.test=.log)
TEST_SUITE_LOG = test-suite.log