summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Pfetsch <spfetsch@google.com>2016-04-21 15:53:29 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-04-21 15:53:29 +0000
commit2cdf51bc3fd32748f666ee9ab3fd98adff3f2697 (patch)
treec331db378b5e3d3478b700dc0081835aa5aed011
parent49690c9cb5cc2ce3d05404d8ed9b7e5a86d087f0 (diff)
parent98c24fe823bba0dba986be61752b29f009c40552 (diff)
downloadplatform_hardware_qcom_bootctrl-2cdf51bc3fd32748f666ee9ab3fd98adff3f2697.tar.gz
platform_hardware_qcom_bootctrl-2cdf51bc3fd32748f666ee9ab3fd98adff3f2697.tar.bz2
platform_hardware_qcom_bootctrl-2cdf51bc3fd32748f666ee9ab3fd98adff3f2697.zip
bootctrl: Add filter for msm8996 builds
am: 98c24fe823 * commit '98c24fe823bba0dba986be61752b29f009c40552': bootctrl: Add filter for msm8996 builds Change-Id: I0985b7897cbfb7a88ab80e701384b61d138fb308
-rw-r--r--Android.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index cae83a0..7e07955 100644
--- a/Android.mk
+++ b/Android.mk
@@ -1,3 +1,4 @@
+ifneq ($(filter msm8996,$(TARGET_BOARD_PLATFORM)),)
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_C_INCLUDES += hardware/libhardware/include
@@ -8,3 +9,4 @@ LOCAL_SRC_FILES := boot_control.c
LOCAL_MODULE_RELATIVE_PATH := hw
LOCAL_MODULE := bootctrl.$(TARGET_BOARD_PLATFORM)
include $(BUILD_SHARED_LIBRARY)
+endif