diff options
author | Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | 2008-10-07 07:11:15 +0000 |
---|---|---|
committer | Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | 2008-10-07 07:11:15 +0000 |
commit | 599d3243f1f0df4c9d444c26e79168960e54a1f8 (patch) | |
tree | 31e7221b71ec89169d681665f42cf60d3c9a111e | |
parent | d6b556670c7a96f341d2efc2c24fca1d0a1fe8a1 (diff) |
openssl: fix compiling OpenSSL for i386 architecture
This patch will use linux-generic32 for all i386 target architectures, which
fixes bug #5274.
Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
-rw-r--r-- | package/openssl/openssl.mk | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/package/openssl/openssl.mk b/package/openssl/openssl.mk index c1959d018..b8c488f5f 100644 --- a/package/openssl/openssl.mk +++ b/package/openssl/openssl.mk @@ -8,12 +8,7 @@ OPENSSL_SITE:=http://www.openssl.org/source OPENSSL_TARGET_ARCH:= ifeq ($(BR2_i386),y) -ifneq ($(ARCH),i386) -OPENSSL_TARGET_ARCH:=i386-$(ARCH) -endif -ifeq ($(ARCH),i686) -OPENSSL_TARGET_ARCH:=i386-i686/cmov -endif +OPENSSL_TARGET_ARCH:=generic32 endif ifeq ($(OPENSSL_TARGET_ARCH),) OPENSSL_TARGET_ARCH:=$(ARCH) |