diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2011-07-22 04:24:56 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-22 11:56:50 +0100 |
commit | 616d711c4824148ccc20819316f46bab5d93083f (patch) | |
tree | cff705eaf9df9042bcbda36c3a8632a8eab4f405 | |
parent | 81773aec30e863690eb5566cb7c8b4a13cd5a74e (diff) | |
download | ast2050-yocto-poky-616d711c4824148ccc20819316f46bab5d93083f.zip ast2050-yocto-poky-616d711c4824148ccc20819316f46bab5d93083f.tar.gz |
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>
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl.inc b/meta/recipes-connectivity/openssl/openssl.inc index 79620b3..b134ad0 100644 --- a/meta/recipes-connectivity/openssl/openssl.inc +++ b/meta/recipes-connectivity/openssl/openssl.inc @@ -83,6 +83,9 @@ do_configure () { linux-gnuspe-powerpc) target=linux-ppc ;; + linux-powerpc64) + target=linux-ppc64 + ;; linux-supersparc) target=linux-sparcv8 ;; |