OSDN Git Service

Switch from libcrypto_static to libcrypto target
authorAlex Klyubin <klyubin@google.com>
Mon, 8 May 2017 21:09:03 +0000 (14:09 -0700)
committerAlex Klyubin <klyubin@google.com>
Mon, 8 May 2017 22:12:00 +0000 (15:12 -0700)
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

tools/obbtool/Android.mk

index 1b1f63e..6dc306e 100644 (file)
@@ -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)