diff options
author | Xing <xing@Xings-iMac.local> | 2015-11-27 20:19:37 +0100 |
---|---|---|
committer | Dees Troy <dees_troy@teamw.in> | 2015-12-23 21:36:41 +0100 |
commit | 0af1ac13d16ede841ef6f16c859c24f8f1e3d16f (patch) | |
tree | 0dff623b6466f5f2aed2c2bc02bcb12f1448a461 /twrpTarMain | |
parent | init: Add new props triggers (diff) | |
download | android_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.mk | 11 |
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 |