diff options
author | Andrew Hsieh <andrewhsieh@google.com> | 2012-08-23 17:23:39 -0700 |
---|---|---|
committer | android code review <noreply-gerritcodereview@google.com> | 2012-08-23 17:23:40 -0700 |
commit | 742a55155e566571d70bf22f04d933ba32c0c955 (patch) | |
tree | 54a2fdddf13095a855eef38821e1debf3154a96c | |
parent | 1ffbb6b1f80ccd557080b4e91b35e18b97f981e6 (diff) | |
parent | ef0a2334a1a1cbc78d92d21d2a0910566bac8b3b (diff) | |
download | external_qemu-742a55155e566571d70bf22f04d933ba32c0c955.zip external_qemu-742a55155e566571d70bf22f04d933ba32c0c955.tar.gz external_qemu-742a55155e566571d70bf22f04d933ba32c0c955.tar.bz2 |
Merge "Fix emulator standalone build"
-rw-r--r-- | Makefile.android | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.android b/Makefile.android index 181986a..c7d43af 100644 --- a/Makefile.android +++ b/Makefile.android @@ -1,4 +1,4 @@ -ifeq ($(BUILD_EMULATOR),true) +ifneq ($(filter true% %true,$(BUILD_EMULATOR)$(BUILD_STANDALONE_EMULATOR)),) ifneq (,$(filter $(TARGET_ARCH),arm x86 mips)) LOCAL_PATH:= $(call my-dir) @@ -309,4 +309,4 @@ $(call end-emulator-program) ## VOILA!! endif # TARGET_ARCH == arm || TARGET_ARCH == x86 || TARGET_ARCH == mips -endif # BUILD_EMULATOR +endif # BUILD_EMULATOR == true || BUILD_STANDALONE_EMULATOR == true |