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.
Signed-off-by: Kumar Gala <[email protected]> --- 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 ;; -- 1.7.3.4 _______________________________________________ Openembedded-core mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
