From 1a96b4dcc75f14558ffec3c289288da57a6e7a04 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Mon, 4 May 2015 14:42:59 -0700 Subject: [PATCH] Use the right variable for evaluating 'windows'. HOST_PREBUILT_TAG is for the building OS, not the target OS. Change-Id: If97a826548a28dcb268a3836c925529730c45642 --- host/Android.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/Android.mk b/host/Android.mk index 5e318e121..51e3eb2c7 100644 --- a/host/Android.mk +++ b/host/Android.mk @@ -15,7 +15,7 @@ # LOCAL_PATH := $(my-dir) -dir := $(wildcard $(LOCAL_PATH)/$(HOST_PREBUILT_TAG)) +dir := $(wildcard $(LOCAL_PATH)/$(HOST_OS)) ifdef dir include $(call first-makefiles-under,$(dir)) endif