diff options
-rw-r--r-- | build-aux/ChangeLog | 5 | ||||
-rw-r--r-- | build-aux/check.mk | 4 |
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 |