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>
This commit is contained in:
Khem Raj 2014-02-16 01:45:25 +00:00 committed by Richard Purdie
parent 94ba45932c
commit b448cf77d9
1 changed files with 4 additions and 3 deletions

View File

@ -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
;;