aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Rini <tom_rini@mentor.com>2011-05-27 14:23:01 -0700
committerTom Rini <tom_rini@mentor.com>2011-05-27 14:23:01 -0700
commite28053063e920200aa8628bc0afcc5fe210a8c1d (patch)
tree4e3b39feb745e6a0622df99e421444bcd34f618c
parent25491674784accdf3fd8f102ad094e5c6e624778 (diff)
downloadopenembedded-e28053063e920200aa8628bc0afcc5fe210a8c1d.tar.gz
openssl.inc: Fix PowerPC64 builds
No INC_PR bump, no PowerPC64 configs here yet. Signed-off-by: Tom Rini <tom_rini@mentor.com>
-rw-r--r--recipes/openssl/openssl.inc5
1 files changed, 4 insertions, 1 deletions
diff --git a/recipes/openssl/openssl.inc b/recipes/openssl/openssl.inc
index 24b517d3af..2460913642 100644
--- a/recipes/openssl/openssl.inc
+++ b/recipes/openssl/openssl.inc
@@ -78,9 +78,12 @@ do_configure () {
linux-mipsel)
target=debian-mipsel
;;
- linux-powerpc | linux-powerpc64)
+ linux-powerpc)
target=linux-ppc
;;
+ linux-powerpc64)
+ target=linux-ppc64
+ ;;
linux-supersparc)
target=linux-sparcv8
;;