summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2011-03-04 16:38:45 +0100
committerHans Ulrich Niedermann <hun@n-dimensional.de>2011-03-07 20:55:24 +0100
commit9e1e2878b9406cb71554cac249bcbc0e68e3f35a (patch)
tree5a5a012a6bc07cb04223bb25eae6337a90474e63
parentb40bd26252b6753af9dbb95d4fc033c8d56bf191 (diff)
downloadrasdaman-upstream-9e1e2878b9406cb71554cac249bcbc0e68e3f35a.tar.gz
rasdaman-upstream-9e1e2878b9406cb71554cac249bcbc0e68e3f35a.tar.xz
rasdaman-upstream-9e1e2878b9406cb71554cac249bcbc0e68e3f35a.zip
build: Remove GNU make-ism $(shell ...)
Those shell globs are only used in shell globs anyway, so defining the make var to contain the actual file names actually makes no difference, and having the make var contain only the globs works just as well.
-rw-r--r--systemtest/Makefile.am8
1 files changed, 5 insertions, 3 deletions
diff --git a/systemtest/Makefile.am b/systemtest/Makefile.am
index 9d4f792..8e9047d 100644
--- a/systemtest/Makefile.am
+++ b/systemtest/Makefile.am
@@ -34,9 +34,11 @@
########################### Targets ##############################
-TESTSEQUENCE = $(shell ls -d testcases_mandatory/* \
- testcases_open/* \
- testcases_fixed/*)
+TESTSEQUENCE =
+TESTSEQUENCE += testcases_mandatory/*
+TESTSEQUENCE += testcases_open/*
+TESTSEQUENCE += testcases_fixed/*
+
# general system test
.PHONY: check
check: