diff options
author | Khem Raj <raj.khem@gmail.com> | 2014-02-16 01:45:25 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-17 15:36:06 +0000 |
commit | d9ee01e4043b8b321d7c374797492ef3c4c2e0de (patch) | |
tree | 6f9614993bc0971d16a48047da969092cc5def04 /meta | |
parent | c782d07597c9839aca755c63c65b46c165d54042 (diff) | |
download | openembedded-core-d9ee01e4043b8b321d7c374797492ef3c4c2e0de.tar.gz openembedded-core-d9ee01e4043b8b321d7c374797492ef3c4c2e0de.tar.bz2 openembedded-core-d9ee01e4043b8b321d7c374797492ef3c4c2e0de.zip |
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@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl.inc | 7 |
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 () { 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 ;; |