summaryrefslogtreecommitdiffstats
path: root/dex2oat/Android.mk
diff options
context:
space:
mode:
authorStuart Monteith <Stuart.Monteith@arm.com>2014-01-30 15:10:54 +0000
committerDavid Butcher <david.butcher@arm.com>2014-01-31 14:26:11 +0000
commitb39d4b11421d7107be29dd17b39241571d822c21 (patch)
tree8ec38f94211002c208e0533f302ecd3ba86f7333 /dex2oat/Android.mk
parent6ed358fc49ee5f534743bed45b19ad966490b78a (diff)
downloadart-b39d4b11421d7107be29dd17b39241571d822c21.zip
art-b39d4b11421d7107be29dd17b39241571d822c21.tar.gz
art-b39d4b11421d7107be29dd17b39241571d822c21.tar.bz2
Enable debug build of dex2oatd on host
ART_BUILD_DEBUG is being ignored by the host build of dex2oatd. This commit simple fixes what looks like a copy & paste error. Change-Id: Ifb256df2c1f2be42032d1687e1740470f7cf5144 Signed-off-by: Stuart Monteith <Stuart.Monteith@arm.com>
Diffstat (limited to 'dex2oat/Android.mk')
-rw-r--r--dex2oat/Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/dex2oat/Android.mk b/dex2oat/Android.mk
index 05dcd7b..6cd0538 100644
--- a/dex2oat/Android.mk
+++ b/dex2oat/Android.mk
@@ -33,7 +33,7 @@ ifeq ($(WITH_HOST_DALVIK),true)
ifeq ($(ART_BUILD_NDEBUG),true)
$(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libart-compiler,art/compiler,host,ndebug))
endif
- ifeq ($(ART_BUILD_NDEBUG),true)
+ ifeq ($(ART_BUILD_DEBUG),true)
$(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libartd-compiler,art/compiler,host,debug))
endif
endif