summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/openssl/openssl.inc
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2014-02-16 01:45:25 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-02-17 15:37:17 +0000
commitb448cf77d9bf688c4bf8d41cc70664259cc7b1ea (patch)
treec4cc6f4f0b783d3541d5ff453c60b8714e6700d8 /meta/recipes-connectivity/openssl/openssl.inc
parent94ba45932c2fcd15aa894c8dc4063a261e993b96 (diff)
downloadpoky-b448cf77d9bf688c4bf8d41cc70664259cc7b1ea.tar.gz
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 (From OE-Core rev: d9ee01e4043b8b321d7c374797492ef3c4c2e0de) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/openssl/openssl.inc')
-rw-r--r--meta/recipes-connectivity/openssl/openssl.inc7
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl.inc b/meta/recipes-connectivity/openssl/openssl.inc
index 373d329460..e9249145fb 100644
--- a/meta/recipes-connectivity/openssl/openssl.inc
+++ b/meta/recipes-connectivity/openssl/openssl.inc
@@ -66,6 +66,10 @@ do_configure () {
66 os=linux 66 os=linux
67 elif [ "x$os" = "xlinux-uclibceabi" ]; then 67 elif [ "x$os" = "xlinux-uclibceabi" ]; then
68 os=linux 68 os=linux
69 elif [ "x$os" = "xlinux-uclibcspe" ]; then
70 os=linux
71 elif [ "x$os" = "xlinux-gnuspe" ]; then
72 os=linux
69 elif [ "x$os" = "xlinux-gnueabi" ]; then 73 elif [ "x$os" = "xlinux-gnueabi" ]; then
70 os=linux 74 os=linux
71 fi 75 fi
@@ -113,9 +117,6 @@ do_configure () {
113 linux-powerpc) 117 linux-powerpc)
114 target=linux-ppc 118 target=linux-ppc
115 ;; 119 ;;
116 linux-gnuspe-powerpc)
117 target=linux-ppc
118 ;;
119 linux-powerpc64) 120 linux-powerpc64)
120 target=linux-ppc64 121 target=linux-ppc64
121 ;; 122 ;;