Disabled 64-bit targets for OpenSSL libraries

This commit is contained in:
Sergii Pylypenko
2015-02-25 21:22:59 +02:00
parent 1efb15c9ea
commit 86809508d0
4 changed files with 5 additions and 3 deletions

View File

@@ -5,6 +5,7 @@ include $(CLEAR_VARS)
LOCAL_MODULE := $(notdir $(LOCAL_PATH))
ifneq (openssl,$(LOCAL_MODULE))
ifneq ($(filter arm mips x86, $(TARGET_ARCH)),)
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
LOCAL_SRC_FILES := lib-$(TARGET_ARCH_ABI)/lib$(LOCAL_MODULE).a
@@ -17,3 +18,4 @@ obj/local/$(TARGET_ARCH_ABI)/lib$(LOCAL_MODULE).a: $(LOCAL_PATH)/$(LOCAL_SRC_FIL
include $(PREBUILT_STATIC_LIBRARY)
endif
endif