diff options
author | sweeaun <swee.aun.khor@intel.com> | 2017-08-02 15:56:07 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-09 23:38:28 +0100 |
commit | a072d4620db462c5d3459441d5684cfd99938400 (patch) | |
tree | 3614bea15c5df5b1b77ee4c76d11ecaa9ec14987 /meta/recipes-connectivity | |
parent | 019c582b1af1361c3d983255e93d9aa706e3b62c (diff) | |
download | openembedded-core-a072d4620db462c5d3459441d5684cfd99938400.tar.gz openembedded-core-a072d4620db462c5d3459441d5684cfd99938400.tar.bz2 openembedded-core-a072d4620db462c5d3459441d5684cfd99938400.zip |
openssl: Support musl-x32 build
Support musl-x32 build which to build openssl with 32 bits.
Signed-off-by: sweeaun <swee.aun.khor@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl.inc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl.inc b/meta/recipes-connectivity/openssl/openssl.inc index ce295e8f37..0d6442e564 100644 --- a/meta/recipes-connectivity/openssl/openssl.inc +++ b/meta/recipes-connectivity/openssl/openssl.inc @@ -66,7 +66,9 @@ do_configure () { case $os in linux-gnueabi |\ linux-gnuspe |\ - linux-musl*) + linux-musleabi |\ + linux-muslspe |\ + linux-musl ) os=linux ;; *) @@ -98,7 +100,7 @@ do_configure () { linux-i686) target=debian-i386-i686/cmov ;; - linux-gnux32-x86_64) + linux-gnux32-x86_64 | linux-muslx32-x86_64 ) target=linux-x32 ;; linux-gnu64-x86_64) |