aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian DC <radian.dc@gmail.com>2016-12-10 17:17:39 +0100
committerAdrian DC <radian.dc@gmail.com>2016-12-10 17:18:19 +0100
commit727f640740fb4edd1901a868259381831e9979e1 (patch)
treea604a88e7b0a17fe5586b74e51c56f3a9b0fb274
parent3333abd03ad8136d8b5a68c350383870ae7aab57 (diff)
sony: macaddrsetup: Restrict the project to Sony AOSP devices only
* Avoid including macaddrsetup into a different device built inside the same build tree as Sony AOSP Change-Id: Id15ee12bfcaf49425e90feaf06c128bbbcb8c822
-rw-r--r--Android.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 12068d9..272bdc5 100644
--- a/Android.mk
+++ b/Android.mk
@@ -1,3 +1,5 @@
+ifneq ($(filter yukon rhine shinano kanuti kitakami loire tone,$(PRODUCT_PLATFORM)),)
+
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
@@ -14,3 +16,5 @@ LOCAL_MODULE := macaddrsetup
LOCAL_MODULE_TAGS := optional
include $(BUILD_EXECUTABLE)
+
+endif