aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLisa Nguyen <lisa.nguyen@linaro.org>2014-07-21 16:47:08 -0700
committerSanjay Singh Rawat <sanjay.rawat@linaro.org>2014-08-13 10:38:29 +0530
commitfc2af2f58861bff3021ab5aac11be6846776a581 (patch)
tree33a6fe6fcbe9a926a6e733d370358ac9c9c81351
parent5ef922a6eafe9719c32223a7b23b78f57a1e0d60 (diff)
Test.mk: Fix make error 1 issues
Modify Test.mk to resolve the following build error: make: [uncheck] Error 1 (ignored). Signed-off-by: Lisa Nguyen <lisa.nguyen@linaro.org>
-rw-r--r--Test.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/Test.mk b/Test.mk
index 89e5cd9..df9cd62 100644
--- a/Test.mk
+++ b/Test.mk
@@ -22,7 +22,7 @@
# - initial API and implementation
SNT=$(wildcard *sanity.sh)
-TST=$(wildcard *[^(sanity)].sh)
+TST=$(wildcard *[^{sanity}].sh)
LOG=$(TST:.sh=.log)
CFLAGS?=-g -Wall -pthread
CC?=gcc
@@ -57,6 +57,6 @@ clean:
rm -f *.o $(EXEC)
uncheck:
- -@test ! -z "$(LOG)" && rm -f $(LOG)
+ -@$(shell test ! -z "$(LOG)" && rm -f $(LOG))
recheck: uncheck check