diff options
author | Dees_Troy <dees_troy@teamw.in> | 2013-08-29 20:33:47 +0200 |
---|---|---|
committer | Dees_Troy <dees_troy@teamw.in> | 2013-08-29 20:33:47 +0200 |
commit | e3850a3fa685082c5f63c3ba8798ea11e6c8cf98 (patch) | |
tree | 45db35c886478544068cfa96beab588b0349d81b /prebuilt | |
parent | Initial f2fs support (diff) | |
download | android_bootable_recovery-e3850a3fa685082c5f63c3ba8798ea11e6c8cf98.tar android_bootable_recovery-e3850a3fa685082c5f63c3ba8798ea11e6c8cf98.tar.gz android_bootable_recovery-e3850a3fa685082c5f63c3ba8798ea11e6c8cf98.tar.bz2 android_bootable_recovery-e3850a3fa685082c5f63c3ba8798ea11e6c8cf98.tar.lz android_bootable_recovery-e3850a3fa685082c5f63c3ba8798ea11e6c8cf98.tar.xz android_bootable_recovery-e3850a3fa685082c5f63c3ba8798ea11e6c8cf98.tar.zst android_bootable_recovery-e3850a3fa685082c5f63c3ba8798ea11e6c8cf98.zip |
Diffstat (limited to '')
-rw-r--r-- | prebuilt/Android.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/prebuilt/Android.mk b/prebuilt/Android.mk index 39f702b3d..73432b3cb 100644 --- a/prebuilt/Android.mk +++ b/prebuilt/Android.mk @@ -51,8 +51,11 @@ ifeq ($(TARGET_USERIMAGES_USE_EXT4), true) endif RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libaosprecovery.so RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libjpeg.so -ifneq ($(wildcard external/libselinux/Android.mk),) +ifeq ($(HAVE_SELINUX), true) RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libselinux.so + ifneq ($(TARGET_USERIMAGES_USE_EXT4), true) + RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libext4_utils.so + endif endif ifeq ($(BUILD_ID), GINGERBREAD) TW_NO_EXFAT := true |