diff options
author | Ying Wang <wangying@google.com> | 2012-04-25 18:32:18 -0700 |
---|---|---|
committer | Ying Wang <wangying@google.com> | 2012-04-25 18:32:18 -0700 |
commit | 98f60c4a29ced94e1025b02436c532777043d31a (patch) | |
tree | ec4e8dc49946617a68fafdb9c8e3b1c8904b9b06 /monitor | |
parent | 7778fe8088a3c958073311ef53980ceecb02bdf3 (diff) | |
download | sdk-98f60c4a29ced94e1025b02436c532777043d31a.zip sdk-98f60c4a29ced94e1025b02436c532777043d31a.tar.gz sdk-98f60c4a29ced94e1025b02436c532777043d31a.tar.bz2 |
Include monitor if TARGET_PRODUCT is sdk.
When buid with "USE_MINGW=1 make PRODUCT-sdk-eng" is_sdk_build is
actually not set.
Change-Id: I6953dc9bd4fb7070cfe348f2527bce70b2592dce
Diffstat (limited to 'monitor')
-rw-r--r-- | monitor/Android.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/monitor/Android.mk b/monitor/Android.mk index 55736b5..a0926a7 100644 --- a/monitor/Android.mk +++ b/monitor/Android.mk @@ -1,7 +1,7 @@ # Copyright 2012 The Android Open Source Project # Expose the Monitor RCP only for the SDK builds. -ifdef is_sdk_build +ifneq (,$(is_sdk_build)$(filter sdk,$(TARGET_PRODUCT))) LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) @@ -49,4 +49,3 @@ $(LOCAL_BUILT_MODULE) : $(TOPDIR)sdk/monitor/monitor \ fi endif - |