From c05d0000bb3e91a21c2cc7cbd85232f1afc7a8d2 Mon Sep 17 00:00:00 2001 From: Brian Carlstrom Date: Thu, 16 Sep 2010 21:49:01 -0700 Subject: [PATCH] Only turn host build on for linux Change-Id: I595948b159bc6a2bf295fd11ab831f978e38c799 --- target/product/core.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/target/product/core.mk b/target/product/core.mk index 188d8fd0e..6f93876fe 100644 --- a/target/product/core.mk +++ b/target/product/core.mk @@ -76,7 +76,9 @@ PRODUCT_PACKAGES := \ # force WITH_HOST_DALVIK on userdebug and user builds. # TODO: this is redundant with a similar clause in build/core/main.mk. ifneq (,$(filter userdebug user,$(TARGET_BUILD_VARIANT))) + ifeq ($(HOST_OS),linux) WITH_HOST_DALVIK := true + endif endif # host-only dependencies -- 2.11.0