summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEthan Yonker <dees_troy@teamw.in>2017-11-29 05:26:38 +0100
committerEthan Yonker <dees_troy@teamw.in>2017-11-29 05:28:27 +0100
commit917331b968f7daef233c81d964a3303dfc3b660a (patch)
tree752bdaa6bae171c71944f3c65f99315b954e8694
parentADB Backup: fix compilation error for remove (diff)
downloadandroid_bootable_recovery-917331b968f7daef233c81d964a3303dfc3b660a.tar
android_bootable_recovery-917331b968f7daef233c81d964a3303dfc3b660a.tar.gz
android_bootable_recovery-917331b968f7daef233c81d964a3303dfc3b660a.tar.bz2
android_bootable_recovery-917331b968f7daef233c81d964a3303dfc3b660a.tar.lz
android_bootable_recovery-917331b968f7daef233c81d964a3303dfc3b660a.tar.xz
android_bootable_recovery-917331b968f7daef233c81d964a3303dfc3b660a.tar.zst
android_bootable_recovery-917331b968f7daef233c81d964a3303dfc3b660a.zip
-rw-r--r--bootloader_message_twrp/Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootloader_message_twrp/Android.mk b/bootloader_message_twrp/Android.mk
index 5a24dc43f..e7a3ea0f8 100644
--- a/bootloader_message_twrp/Android.mk
+++ b/bootloader_message_twrp/Android.mk
@@ -19,7 +19,7 @@ LOCAL_CLANG := true
LOCAL_SRC_FILES := bootloader_message.cpp
LOCAL_MODULE := libbootloader_message_twrp
LOCAL_C_INCLUDES += bionic $(LOCAL_PATH)/include
-ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 22; echo $$?),0)
+ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 21; echo $$?),0)
LOCAL_C_INCLUDES += external/stlport/stlport
LOCAL_SHARED_LIBRARIES += libstlport
else