summaryrefslogtreecommitdiffstats
path: root/Apps.mk
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-05-01 21:37:56 -0700
committerBrian Carlstrom <bdc@google.com>2013-05-01 21:57:46 -0700
commit32e8f93ccd0aad87b5570b88f3ce5f1ea7530be3 (patch)
tree5189e8b8d5f8346fb559448704157262bc5dad39 /Apps.mk
parentc1b05eb57fadc3796aff6079d5a65e3c809aa9de (diff)
downloadreplicant_openssl-32e8f93ccd0aad87b5570b88f3ce5f1ea7530be3.zip
replicant_openssl-32e8f93ccd0aad87b5570b88f3ce5f1ea7530be3.tar.gz
replicant_openssl-32e8f93ccd0aad87b5570b88f3ce5f1ea7530be3.tar.bz2
Give unique name to host build shared libraries
Change-Id: Ib4d2ababe8bf6876a2d41c2dcc2db881515089b9
Diffstat (limited to 'Apps.mk')
-rw-r--r--Apps.mk8
1 files changed, 2 insertions, 6 deletions
diff --git a/Apps.mk b/Apps.mk
index 57d43b9..7fd5539 100644
--- a/Apps.mk
+++ b/Apps.mk
@@ -2,10 +2,6 @@
LOCAL_PATH:= $(call my-dir)
-local_shared_libraries := \
- libssl \
- libcrypto
-
local_c_includes :=
local_c_flags :=
@@ -17,7 +13,7 @@ include $(CLEAR_VARS)
LOCAL_MODULE:= openssl
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(target_src_files)
-LOCAL_SHARED_LIBRARIES := $(local_shared_libraries)
+LOCAL_SHARED_LIBRARIES := libssl libcrypto
LOCAL_C_INCLUDES := $(target_c_includes)
LOCAL_CFLAGS := $(target_c_flags)
LOCAL_ADDITIONAL_DEPENDENCIES := $(local_additional_dependencies)
@@ -28,7 +24,7 @@ include $(CLEAR_VARS)
LOCAL_MODULE:= openssl
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(host_src_files)
-LOCAL_SHARED_LIBRARIES := $(local_shared_libraries)
+LOCAL_SHARED_LIBRARIES := libssl-host libcrypto-host
LOCAL_C_INCLUDES := $(host_c_includes)
LOCAL_CFLAGS := $(host_c_flags)
LOCAL_ADDITIONAL_DEPENDENCIES := $(local_additional_dependencies)