summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2014-06-18 16:07:49 +0100
committerNicolas Geoffray <ngeoffray@google.com>2014-06-18 16:07:49 +0100
commitfe40874ee8359a12f5360d18e4943a091d960b49 (patch)
treefbb84a2f4de65af5fa9387683db6e7e1995a8d68 /Android.mk
parent7258eaa0c78d14c779231c025608dc617a6dca69 (diff)
downloadart-fe40874ee8359a12f5360d18e4943a091d960b49.zip
art-fe40874ee8359a12f5360d18e4943a091d960b49.tar.gz
art-fe40874ee8359a12f5360d18e4943a091d960b49.tar.bz2
Add missing parens to Makefile rule.
Change-Id: I5bff24a696a07c734d05d0ee42f3cf6cd57c0904
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index 491fad3..593ee04 100644
--- a/Android.mk
+++ b/Android.mk
@@ -207,7 +207,7 @@ TEST_ART_HOST_RUN_TEST_DEFAULT_TARGETS += test-art-host-run-test-default-$(1)
.PHONY: test-art-host-run-test-optimizing-$(1)
test-art-host-run-test-optimizing-$(1): test-art-host-dependencies $(DX) $(HOST_OUT_EXECUTABLES)/jasmin
DX=$(abspath $(DX)) JASMIN=$(abspath $(HOST_OUT_EXECUTABLES)/jasmin) art/test/run-test -Xcompiler-option --compiler-backend=Optimizing $(addprefix --runtime-option ,$(DALVIKVM_FLAGS)) --host $(1) \
- || echo -e "\x1b[31;01mTest $(1) $(FAILING_OPTIMIZING_MESSAGE)\x1b[0m" && exit 1
+ || (echo -e "\x1b[31;01mTest $(1) $(FAILING_OPTIMIZING_MESSAGE)\x1b[0m" && exit 1)
@echo test-art-host-run-test-optimizing-$(1) PASSED
TEST_ART_HOST_RUN_TEST_OPTIMIZING_TARGETS += test-art-host-run-test-optimizing-$(1)