diff options
author | Junmo Park <junmoz.park@samsung.com> | 2014-08-11 21:28:16 +0900 |
---|---|---|
committer | Junmo Park <junmoz.park@samsung.com> | 2014-08-13 08:21:05 +0900 |
commit | 76ab347dc9b89970da1451568965ee208c728c43 (patch) | |
tree | 9581645023d8ebceb1d9385145648f37a83cebe2 /patchoat | |
parent | 99c251bbd225dd97d0deece29559a430b12a0b66 (diff) | |
download | art-76ab347dc9b89970da1451568965ee208c728c43.zip art-76ab347dc9b89970da1451568965ee208c728c43.tar.gz art-76ab347dc9b89970da1451568965ee208c728c43.tar.bz2 |
Fix art build script
Use ART_BUILD_HOST_NDEBUG instead of ART_BUILD_NDEBUG.
Change-Id: I0ff590552f47d3354287a155b51936a7aef82f1f
Signed-off-by: Junmo Park <junmoz.park@samsung.com>
Diffstat (limited to 'patchoat')
-rw-r--r-- | patchoat/Android.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/patchoat/Android.mk b/patchoat/Android.mk index 8b6b9ad..1e16096 100644 --- a/patchoat/Android.mk +++ b/patchoat/Android.mk @@ -37,9 +37,9 @@ ifeq ($(ART_BUILD_TARGET_DEBUG),true) endif # We always build patchoat and dependencies, even if the host build is otherwise disabled, since they are used to cross compile for the target. -ifeq ($(ART_BUILD_NDEBUG),true) +ifeq ($(ART_BUILD_HOST_NDEBUG),true) $(eval $(call build-art-executable,patchoat,$(PATCHOAT_SRC_FILES),,art/compiler,host,ndebug)) endif -ifeq ($(ART_BUILD_DEBUG),true) +ifeq ($(ART_BUILD_HOST_DEBUG),true) $(eval $(call build-art-executable,patchoat,$(PATCHOAT_SRC_FILES),,art/compiler,host,debug)) endif |