From b39d4b11421d7107be29dd17b39241571d822c21 Mon Sep 17 00:00:00 2001 From: Stuart Monteith Date: Thu, 30 Jan 2014 15:10:54 +0000 Subject: 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 --- dex2oat/Android.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dex2oat') 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 -- cgit v1.1