diff options
author | Alex Klyubin <klyubin@google.com> | 2017-05-08 14:09:03 -0700 |
---|---|---|
committer | Alex Klyubin <klyubin@google.com> | 2017-05-08 15:12:00 -0700 |
commit | 9d2b22d2e6d86b636238f74ff4b1b75cb3b88b81 (patch) | |
tree | 1caf1dba930a9502876d51b698954858d3659746 /tools/obbtool | |
parent | 52bc790f616f3f1578f31e7161eb93f670213bdb (diff) |
Switch from libcrypto_static to libcrypto target
libcrypto target offers the same static library as libcrypto_static.
Thus, there's no need to use libcrypto_static.
Test: make pbkdf2gen
Run pbkdf2gen with and without a password and confirm it works
Bug: 26160319
Change-Id: I89a60b7521e6c3df91421d0edf64a71b8b2c20e0
Diffstat (limited to 'tools/obbtool')
-rw-r--r-- | tools/obbtool/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/obbtool/Android.mk b/tools/obbtool/Android.mk index 1b1f63ec41c4..6dc306e85bc6 100644 --- a/tools/obbtool/Android.mk +++ b/tools/obbtool/Android.mk @@ -39,7 +39,7 @@ LOCAL_MODULE_TAGS := optional LOCAL_CFLAGS := -Wall -Werror -Wno-mismatched-tags LOCAL_SRC_FILES := pbkdf2gen.cpp LOCAL_LDLIBS += -ldl -LOCAL_STATIC_LIBRARIES := libcrypto_static +LOCAL_STATIC_LIBRARIES := libcrypto include $(BUILD_HOST_EXECUTABLE) |