diff options
author | Matt Mower <mowerm@gmail.com> | 2017-01-18 04:14:46 +0100 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2017-01-18 19:40:26 +0100 |
commit | 874136434a6ef13dffec9c6c8c136d2424a32c33 (patch) | |
tree | 5875f18cd9ea090a36b692de24f29e69a2b4f65d /twrpTarMain | |
parent | Restore file system type logline on restore (diff) | |
download | android_bootable_recovery-874136434a6ef13dffec9c6c8c136d2424a32c33.tar android_bootable_recovery-874136434a6ef13dffec9c6c8c136d2424a32c33.tar.gz android_bootable_recovery-874136434a6ef13dffec9c6c8c136d2424a32c33.tar.bz2 android_bootable_recovery-874136434a6ef13dffec9c6c8c136d2424a32c33.tar.lz android_bootable_recovery-874136434a6ef13dffec9c6c8c136d2424a32c33.tar.xz android_bootable_recovery-874136434a6ef13dffec9c6c8c136d2424a32c33.tar.zst android_bootable_recovery-874136434a6ef13dffec9c6c8c136d2424a32c33.zip |
Diffstat (limited to 'twrpTarMain')
-rw-r--r-- | twrpTarMain/Android.mk | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/twrpTarMain/Android.mk b/twrpTarMain/Android.mk index f948708d9..a80b4de57 100644 --- a/twrpTarMain/Android.mk +++ b/twrpTarMain/Android.mk @@ -22,11 +22,9 @@ ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) endif LOCAL_STATIC_LIBRARIES += libstdc++ -ifeq ($(TWHAVE_SELINUX), true) - LOCAL_C_INCLUDES += external/libselinux/include - LOCAL_STATIC_LIBRARIES += libselinux - LOCAL_CFLAGS += -DHAVE_SELINUX -endif +LOCAL_C_INCLUDES += external/libselinux/include +LOCAL_STATIC_LIBRARIES += libselinux + ifneq ($(RECOVERY_SDCARD_ON_DATA),) LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA endif @@ -65,11 +63,9 @@ ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) endif LOCAL_SHARED_LIBRARIES += libstdc++ -ifeq ($(TWHAVE_SELINUX), true) - LOCAL_C_INCLUDES += external/libselinux/include - LOCAL_SHARED_LIBRARIES += libselinux - LOCAL_CFLAGS += -DHAVE_SELINUX -endif +LOCAL_C_INCLUDES += external/libselinux/include +LOCAL_SHARED_LIBRARIES += libselinux + ifneq ($(RECOVERY_SDCARD_ON_DATA),) LOCAL_CFLAGS += -DRECOVERY_SDCARD_ON_DATA endif |