Modify Test.mk to resolve the following build error: make: [uncheck] Error 1 (ignored).
Signed-off-by: Lisa Nguyen lisa.nguyen@linaro.org --- Test.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Test.mk b/Test.mk index 89e5cd9..9fad2c4 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