summaryrefslogtreecommitdiffstats
path: root/twrpTarMain
diff options
context:
space:
mode:
authorXing <xing@Xings-iMac.local>2015-11-27 20:19:37 +0100
committerDees Troy <dees_troy@teamw.in>2015-12-23 21:36:41 +0100
commit0af1ac13d16ede841ef6f16c859c24f8f1e3d16f (patch)
tree0dff623b6466f5f2aed2c2bc02bcb12f1448a461 /twrpTarMain
parentinit: Add new props triggers (diff)
downloadandroid_bootable_recovery-0af1ac13d16ede841ef6f16c859c24f8f1e3d16f.tar
android_bootable_recovery-0af1ac13d16ede841ef6f16c859c24f8f1e3d16f.tar.gz
android_bootable_recovery-0af1ac13d16ede841ef6f16c859c24f8f1e3d16f.tar.bz2
android_bootable_recovery-0af1ac13d16ede841ef6f16c859c24f8f1e3d16f.tar.lz
android_bootable_recovery-0af1ac13d16ede841ef6f16c859c24f8f1e3d16f.tar.xz
android_bootable_recovery-0af1ac13d16ede841ef6f16c859c24f8f1e3d16f.tar.zst
android_bootable_recovery-0af1ac13d16ede841ef6f16c859c24f8f1e3d16f.zip
Diffstat (limited to 'twrpTarMain')
-rw-r--r--twrpTarMain/Android.mk11
1 files changed, 9 insertions, 2 deletions
diff --git a/twrpTarMain/Android.mk b/twrpTarMain/Android.mk
index 5f15bf037..5a1a4434f 100644
--- a/twrpTarMain/Android.mk
+++ b/twrpTarMain/Android.mk
@@ -11,8 +11,15 @@ LOCAL_SRC_FILES:= \
../twrpDU.cpp
LOCAL_CFLAGS:= -g -c -W -DBUILD_TWRPTAR_MAIN
-LOCAL_C_INCLUDES += bionic external/stlport/stlport
-LOCAL_STATIC_LIBRARIES := libc libtar_static libstlport_static libstdc++
+LOCAL_C_INCLUDES += bionic
+ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
+ LOCAL_C_INCLUDES += external/stlport/stlport
+endif
+
+LOCAL_STATIC_LIBRARIES := libc libtar_static libstdc++
+ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
+ LOCAL_STATIC_LIBRARIES += libstlport_static
+endif
ifeq ($(TWHAVE_SELINUX), true)
LOCAL_C_INCLUDES += external/libselinux/include