diff options
author | Ethan Yonker <dees_troy@teamw.in> | 2016-08-31 20:42:11 +0200 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2016-08-31 20:42:13 +0200 |
commit | b8e985c6a29dff748a44ffc9a142c8244ae18099 (patch) | |
tree | 65d8042da094e840dd8f44b6959c3b0fc7b1b934 /updater | |
parent | twrp: Use the correct lib name (diff) | |
download | android_bootable_recovery-b8e985c6a29dff748a44ffc9a142c8244ae18099.tar android_bootable_recovery-b8e985c6a29dff748a44ffc9a142c8244ae18099.tar.gz android_bootable_recovery-b8e985c6a29dff748a44ffc9a142c8244ae18099.tar.bz2 android_bootable_recovery-b8e985c6a29dff748a44ffc9a142c8244ae18099.tar.lz android_bootable_recovery-b8e985c6a29dff748a44ffc9a142c8244ae18099.tar.xz android_bootable_recovery-b8e985c6a29dff748a44ffc9a142c8244ae18099.tar.zst android_bootable_recovery-b8e985c6a29dff748a44ffc9a142c8244ae18099.zip |
Diffstat (limited to 'updater')
-rw-r--r-- | updater/Android.mk | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/updater/Android.mk b/updater/Android.mk index b85fe557c..23ba592a8 100644 --- a/updater/Android.mk +++ b/updater/Android.mk @@ -33,27 +33,13 @@ LOCAL_CLANG := true LOCAL_SRC_FILES := $(updater_src_files) -LOCAL_STATIC_LIBRARIES += libfec libfec_rs libext4_utils_static libsquashfs_utils libcrypto_static +LOCAL_STATIC_LIBRARIES += libfec libfec_rs libsquashfs_utils libcrypto_static ifeq ($(TARGET_USERIMAGES_USE_EXT4), true) LOCAL_CFLAGS += -DUSE_EXT4 LOCAL_CFLAGS += -Wno-unused-parameter LOCAL_C_INCLUDES += system/extras/ext4_utils -LOCAL_STATIC_LIBRARIES += \ - libext4_utils \ - libz -ifneq ($(wildcard system/core/libmincrypt/rsa_e_3.c),) -LOCAL_STATIC_LIBRARIES = \ - libext4_utils_static \ - libsparse_static \ - libz -endif -ifneq ($(wildcard system/core/include/mincrypt/sha256.h),) -LOCAL_STATIC_LIBRARIES = \ - libext4_utils_static \ - libsparse_static \ - libz -endif +LOCAL_STATIC_LIBRARIES += libext4_utils_static libsparse_static ifneq ($(wildcard external/lz4/Android.mk),) LOCAL_STATIC_LIBRARIES += liblz4 endif @@ -62,7 +48,7 @@ endif LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UPDATER_LIBS) $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS) LOCAL_STATIC_LIBRARIES += libapplypatch libbase libotafault libedify libmtdutils libminzip libz LOCAL_STATIC_LIBRARIES += libflashutils libmmcutils libbmlutils -LOCAL_STATIC_LIBRARIES += libmincrypttwrp libbz +LOCAL_STATIC_LIBRARIES += libbz LOCAL_STATIC_LIBRARIES += libcutils liblog libc LOCAL_STATIC_LIBRARIES += libselinux |