From 9e1e2878b9406cb71554cac249bcbc0e68e3f35a Mon Sep 17 00:00:00 2001 From: Hans Ulrich Niedermann Date: Fri, 4 Mar 2011 16:38:45 +0100 Subject: 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. --- systemtest/Makefile.am | 8 +++++--- 1 file 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: -- cgit