summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Ying Wang <wangying@google.com> 2014-03-11 02:03:26 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-03-11 02:03:26 +0000
commitc5bb05eb5e4e8a22ff9c1e96ddac72d3f95106a7 (patch)
treec5c357a0d9e8fd2d37ab68cb1903915f4b65cd09
parentf8448431b291287ae23315ee0262e9bcdf98eed1 (diff)
parentd858c96632a3e4afe522365fc725f913c8a750b9 (diff)
Merge "Disable host clang only if WITHOUT_HOST_CLANG is set"
-rw-r--r--build/Android.common.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/Android.common.mk b/build/Android.common.mk
index cc46146c46..f22eb37beb 100644
--- a/build/Android.common.mk
+++ b/build/Android.common.mk
@@ -95,7 +95,7 @@ LLVM_ROOT_PATH := external/llvm
# Target builds use GCC by default.
ART_TARGET_CLANG := false
ART_HOST_CLANG := false
-ifneq ($(WITHOUT_CLANG),true)
+ifneq ($(WITHOUT_HOST_CLANG),true)
# By default, host builds use clang for better warnings.
ART_HOST_CLANG := true
endif