openssl: Add handling for building on linux-powerpc64

If try to build for an ppc64 target openssl will fail to build since
the configure script didn't know how to handle a 'linux-powerpc64' target.

(From OE-Core rev: 9c98851951ba79a5e1a6a7daa2a3552dcf3adf86)

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Kumar Gala 2011-07-22 04:24:56 -05:00 committed by Richard Purdie
parent 81773aec30
commit 616d711c48
1 changed files with 3 additions and 0 deletions

View File

@ -83,6 +83,9 @@ do_configure () {
linux-gnuspe-powerpc)
target=linux-ppc
;;
linux-powerpc64)
target=linux-ppc64
;;
linux-supersparc)
target=linux-sparcv8
;;