diff options
author | Andrew Hsieh <andrewhsieh@google.com> | 2012-08-23 17:39:09 -0700 |
---|---|---|
committer | android code review <noreply-gerritcodereview@google.com> | 2012-08-23 17:39:10 -0700 |
commit | a616e320339206339dbf51da50f0904010ff71ca (patch) | |
tree | 18833f092a8433ae6afadbb024cb8c8d352ef7ab | |
parent | 742a55155e566571d70bf22f04d933ba32c0c955 (diff) | |
parent | 6eb25c716f097615f3c975c22b1b1bfaff914c34 (diff) | |
download | external_qemu-a616e320339206339dbf51da50f0904010ff71ca.zip external_qemu-a616e320339206339dbf51da50f0904010ff71ca.tar.gz external_qemu-a616e320339206339dbf51da50f0904010ff71ca.tar.bz2 |
Merge "Fix mac build"
-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 |