diff options
author | Andrew Hsieh <andrewhsieh@google.com> | 2012-08-24 08:18:22 +0800 |
---|---|---|
committer | Andrew Hsieh <andrewhsieh@google.com> | 2012-08-24 08:18:22 +0800 |
commit | 6eb25c716f097615f3c975c22b1b1bfaff914c34 (patch) | |
tree | 18833f092a8433ae6afadbb024cb8c8d352ef7ab | |
parent | ef0a2334a1a1cbc78d92d21d2a0910566bac8b3b (diff) | |
download | external_qemu-6eb25c716f097615f3c975c22b1b1bfaff914c34.zip external_qemu-6eb25c716f097615f3c975c22b1b1bfaff914c34.tar.gz external_qemu-6eb25c716f097615f3c975c22b1b1bfaff914c34.tar.bz2 |
Fix mac build
Change-Id: Ic80b84d7b29134c9dfad4163321f61302961d179
-rw-r--r-- | Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index cbb22e5..882d638 100644 --- a/Makefile.common +++ b/Makefile.common @@ -683,7 +683,7 @@ $(call end-emulator-library) ## another for 64-bit, see note in emulator64-common -ifeq ($(HOST_OS),linux) +ifneq ($(filter linux darwin,$(HOST_OS)),) ifneq ($(BUILD_STANDALONE_EMULATOR),true) $(call start-emulator-library, emulator64-libjpeg) LOCAL_CFLAGS += $(common_LOCAL_CFLAGS) -m64 |