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 /minadbd/Android.mk | |
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 'minadbd/Android.mk')
-rw-r--r-- | minadbd/Android.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/minadbd/Android.mk b/minadbd/Android.mk index 3d675dda5..24d16350f 100644 --- a/minadbd/Android.mk +++ b/minadbd/Android.mk @@ -30,7 +30,8 @@ ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) LOCAL_SHARED_LIBRARIES += libmincrypttwrp LOCAL_CFLAGS += -DUSE_MINCRYPT else - LOCAL_SHARED_LIBRARIES += libcrypto + LOCAL_SHARED_LIBRARIES += libcrypto \ + $(if $(WITH_CRYPTO_UTILS),libcrypto_utils) endif include $(BUILD_SHARED_LIBRARY) |