openssl calls the i686 target "i686/cmov" not just "i686" as pointed out by Sieg on irc
This commit is contained in:
parent
900edf5c2d
commit
9468545bbf
@ -11,7 +11,11 @@ OPENSSL_SOURCE:=openssl-$(OPENSSL_VER).tar.gz
|
|||||||
OPENSSL_DIR:=$(BUILD_DIR)/openssl-$(OPENSSL_VER)
|
OPENSSL_DIR:=$(BUILD_DIR)/openssl-$(OPENSSL_VER)
|
||||||
|
|
||||||
ifeq ($(BR2_i386),y)
|
ifeq ($(BR2_i386),y)
|
||||||
|
ifeq ($(ARCH),i686)
|
||||||
|
OPENSSL_TARGET_ARCH:=i386-i686/cmov
|
||||||
|
else
|
||||||
OPENSSL_TARGET_ARCH:=i386-$(ARCH)
|
OPENSSL_TARGET_ARCH:=i386-$(ARCH)
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
OPENSSL_TARGET_ARCH:=$(ARCH)
|
OPENSSL_TARGET_ARCH:=$(ARCH)
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user