[oe-commits] Khem Raj : openssl: Fix build on uclibc

git at git.openembedded.org git at git.openembedded.org
Mon Feb 17 16:58:02 UTC 2014


Module: openembedded-core.git
Branch: master-next
Commit: d9ee01e4043b8b321d7c374797492ef3c4c2e0de
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=d9ee01e4043b8b321d7c374797492ef3c4c2e0de

Author: Khem Raj <raj.khem at gmail.com>
Date:   Sun Feb 16 01:45:25 2014 +0000

openssl: Fix build on uclibc

we need to map OS string correctly to include linux-uclibcspe
which is what we use with ppc+spe on uclibc, additionally move
gnuspe triplet mapping to same code as well

Signed-off-by: Khem Raj <raj.khem at gmail.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/recipes-connectivity/openssl/openssl.inc | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-connectivity/openssl/openssl.inc b/meta/recipes-connectivity/openssl/openssl.inc
index 373d329..e924914 100644
--- a/meta/recipes-connectivity/openssl/openssl.inc
+++ b/meta/recipes-connectivity/openssl/openssl.inc
@@ -66,6 +66,10 @@ do_configure () {
 		os=linux
 	elif [ "x$os" = "xlinux-uclibceabi" ]; then
 		os=linux
+	elif [ "x$os" = "xlinux-uclibcspe" ]; then
+		os=linux
+	elif [ "x$os" = "xlinux-gnuspe" ]; then
+		os=linux
 	elif [ "x$os" = "xlinux-gnueabi" ]; then
 		os=linux
 	fi
@@ -113,9 +117,6 @@ do_configure () {
 	linux-powerpc)
 		target=linux-ppc
 		;;
-	linux-gnuspe-powerpc)
-		target=linux-ppc
-		;;
 	linux-powerpc64)
 		target=linux-ppc64
 		;;



More information about the Openembedded-commits mailing list