aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Rini <tom_rini@mentor.com>2010-11-19 08:14:13 -0700
committerTom Rini <tom_rini@mentor.com>2010-11-19 08:14:38 -0700
commit9692544e1683a96555e5fcea4bbf2b9052c57a68 (patch)
treeafd4daa2f7294ffeb234f493d3bcd42e8ca1059a
parent9aa0531ed36b189e74a42ec58562213a444b1fea (diff)
downloadopenembedded-9692544e1683a96555e5fcea4bbf2b9052c57a68.tar.gz
openssl.inc: Update powerpc logic
We 'spe' needs similar tests to 'eabi'. Signed-off-by: Tom Rini <tom_rini@mentor.com>
-rw-r--r--recipes/openssl/openssl.inc7
1 files changed, 4 insertions, 3 deletions
diff --git a/recipes/openssl/openssl.inc b/recipes/openssl/openssl.inc
index 1ef5f0f606..885d933dea 100644
--- a/recipes/openssl/openssl.inc
+++ b/recipes/openssl/openssl.inc
@@ -44,6 +44,10 @@ do_configure () {
os=linux
elif [ "x$os" = "xlinux-gnueabi" ]; then
os=linux
+ elif [ "x$os" = "xlinux-uclibcspe" ]; then
+ os=linux
+ elif [ "x$os" = "xlinux-gnuspe" ]; then
+ os=linux
fi
target="$os-${HOST_ARCH}"
case $target in
@@ -77,9 +81,6 @@ do_configure () {
linux-powerpc)
target=linux-ppc
;;
- linux-gnuspe-powerpc)
- target=linux-ppc
- ;;
linux-supersparc)
target=linux-sparcv8
;;