Allow 'export WITH_HOST_DALVIK=false' to override Makefile defaulting

Change-Id: I8915bc1c9f52a3b6ab1a82b404ab61cd0726198d
This commit is contained in:
Brian Carlstrom 2010-09-30 14:41:54 -07:00
parent 0b9382c792
commit e947865041
1 changed files with 5 additions and 1 deletions

View File

@ -119,12 +119,16 @@ else
HOST_PREBUILT_TAG := $(HOST_OS)-$(HOST_ARCH)
endif
# Build dalvikvm on hosts that support it, but not if we're building the sim
# Default to building dalvikvm on hosts that support it...
ifeq ($(HOST_OS),linux)
# ... but not if we're building the sim...
ifneq ($(TARGET_SIMULATOR),true)
# ... or if the if the option is already set
ifeq ($(WITH_HOST_DALVIK),)
WITH_HOST_DALVIK := true
endif
endif
endif
# ---------------------------------------------------------------