Fix sim-eng build.
Don't try to do the host build if we're configured for sim-eng. They seem to be clashing, and it's redundant anyway. Change-Id: I8e1a24b6e07d28701b32b6559ba39337b211264d
This commit is contained in:
parent
e7f8140e6d
commit
6474811d64
1 changed files with 3 additions and 1 deletions
|
@ -119,10 +119,12 @@ else
|
|||
HOST_PREBUILT_TAG := $(HOST_OS)-$(HOST_ARCH)
|
||||
endif
|
||||
|
||||
# Build dalvikvm on hosts that support it
|
||||
# Build dalvikvm on hosts that support it, but not if we're building the sim
|
||||
ifeq ($(HOST_OS),linux)
|
||||
ifneq ($(TARGET_SIMULATOR),true)
|
||||
WITH_HOST_DALVIK := true
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
# ---------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue