diff options
author | D. Andrei Măceș <dmaces@nd.edu> | 2016-12-22 12:19:44 +0100 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2017-01-11 17:56:21 +0100 |
commit | b29a5e27c33291f8134ea5f28e84e672a3c25199 (patch) | |
tree | 741757b353cf5a7537fcdf8dcd10d13caca3323b /prebuilt | |
parent | Fix compile error on 4.4 tree (diff) | |
download | android_bootable_recovery-b29a5e27c33291f8134ea5f28e84e672a3c25199.tar android_bootable_recovery-b29a5e27c33291f8134ea5f28e84e672a3c25199.tar.gz android_bootable_recovery-b29a5e27c33291f8134ea5f28e84e672a3c25199.tar.bz2 android_bootable_recovery-b29a5e27c33291f8134ea5f28e84e672a3c25199.tar.lz android_bootable_recovery-b29a5e27c33291f8134ea5f28e84e672a3c25199.tar.xz android_bootable_recovery-b29a5e27c33291f8134ea5f28e84e672a3c25199.tar.zst android_bootable_recovery-b29a5e27c33291f8134ea5f28e84e672a3c25199.zip |
Diffstat (limited to 'prebuilt')
-rw-r--r-- | prebuilt/Android.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/prebuilt/Android.mk b/prebuilt/Android.mk index b5891acdf..3206346e0 100644 --- a/prebuilt/Android.mk +++ b/prebuilt/Android.mk @@ -96,7 +96,9 @@ ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0) RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libgccdemangle.so endif ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 23; echo $$?),0) - RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libcrypto.so + + RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libcrypto.so \ + $(if $(WITH_CRYPTO_UTILS),$(TARGET_OUT_SHARED_LIBRARIES)/libcrypto_utils.so) RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libpackagelistparser.so RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/liblzma.so endif |