From: <abe...@us...> - 2014-07-19 18:23:26
|
Revision: 6597 http://sourceforge.net/p/astlinux/code/6597 Author: abelbeck Date: 2014-07-19 18:23:17 +0000 (Sat, 19 Jul 2014) Log Message: ----------- openssl, use 'linux-elf' configure option for i586 and i686 architectures Modified Paths: -------------- branches/1.0/package/openssl/openssl.mk Modified: branches/1.0/package/openssl/openssl.mk =================================================================== --- branches/1.0/package/openssl/openssl.mk 2014-07-16 23:44:56 UTC (rev 6596) +++ branches/1.0/package/openssl/openssl.mk 2014-07-19 18:23:17 UTC (rev 6597) @@ -38,6 +38,12 @@ ifeq ($(ARCH),x86_64) OPENSSL_TARGET_ARCH = x86_64 endif +ifeq ($(ARCH),i686) + OPENSSL_TARGET_ARCH = elf +endif +ifeq ($(ARCH),i586) + OPENSSL_TARGET_ARCH = elf +endif # Workaround for bug #3445 ifeq ($(BR2_x86_i386),y) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |