From edb86c32883f3407e54575599ec7dc319c32095e Mon Sep 17 00:00:00 2001 From: Joe Onorato Date: Wed, 25 Jul 2012 14:28:40 -0700 Subject: Don't try to build the emulator on Mac OS if the right tools aren't installed. Change-Id: I7f8dcec1715657d44c562427d1c3dbd290f14ff8 --- Makefile.android | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.android b/Makefile.android index 817c562..905622e 100644 --- a/Makefile.android +++ b/Makefile.android @@ -1,3 +1,5 @@ +ifeq ($(BUILD_EMULATOR),true) + ifneq (,$(filter $(TARGET_ARCH),arm x86 mips)) LOCAL_PATH:= $(call my-dir) @@ -328,3 +330,4 @@ $(call end-emulator-program) ## VOILA!! endif # TARGET_ARCH == arm || TARGET_ARCH == x86 || TARGET_ARCH == mips +endif # BUILD_EMULATOR -- cgit v1.1