diff options
| -rw-r--r-- | disassembler/Android.mk | 4 | ||||
| -rw-r--r-- | patchoat/Android.mk | 4 | ||||
| -rw-r--r-- | runtime/Android.mk | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/disassembler/Android.mk b/disassembler/Android.mk index a0abc9e1f0..d67c16943e 100644 --- a/disassembler/Android.mk +++ b/disassembler/Android.mk @@ -99,9 +99,9 @@ ifeq ($(ART_BUILD_TARGET_DEBUG),true) $(eval $(call build-libart-disassembler,target,debug)) endif # We always build dex2oat 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-libart-disassembler,host,ndebug)) endif -ifeq ($(ART_BUILD_DEBUG),true) +ifeq ($(ART_BUILD_HOST_DEBUG),true) $(eval $(call build-libart-disassembler,host,debug)) endif diff --git a/patchoat/Android.mk b/patchoat/Android.mk index 8b6b9ad773..1e160965d6 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 diff --git a/runtime/Android.mk b/runtime/Android.mk index 4371f13708..f55d3fbe12 100644 --- a/runtime/Android.mk +++ b/runtime/Android.mk @@ -468,10 +468,10 @@ endef # We always build dex2oat 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-libart,host,ndebug)) endif -ifeq ($(ART_BUILD_DEBUG),true) +ifeq ($(ART_BUILD_HOST_DEBUG),true) $(eval $(call build-libart,host,debug)) endif |