diff options
| author | Andre McCurdy <armccurdy@gmail.com> | 2018-07-23 19:38:54 -0700 | 
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-26 13:16:31 +0100 | 
| commit | 24e745aaa2354432a9112879450263cab742c85b (patch) | |
| tree | ab6aaecacd79b0c4193350f44c57c6542e713666 | |
| parent | 35cf2c1266927b609e0022be2c7bd8e08410a456 (diff) | |
| download | openembedded-core-24e745aaa2354432a9112879450263cab742c85b.tar.gz openembedded-core-24e745aaa2354432a9112879450263cab742c85b.tar.bz2 openembedded-core-24e745aaa2354432a9112879450263cab742c85b.zip | |
openssl: support musl-x32 build
Align the openssl 1.1 recipe with changes made to openssl 1.0:
  http://git.openembedded.org/openembedded-core/commit/?id=a072d4620db462c5d3459441d5684cfd99938400
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
| -rw-r--r-- | meta/recipes-connectivity/openssl/openssl_1.1.0h.bb | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/meta/recipes-connectivity/openssl/openssl_1.1.0h.bb b/meta/recipes-connectivity/openssl/openssl_1.1.0h.bb index a2f5d67421..5dc2966fac 100644 --- a/meta/recipes-connectivity/openssl/openssl_1.1.0h.bb +++ b/meta/recipes-connectivity/openssl/openssl_1.1.0h.bb @@ -39,7 +39,9 @@ do_configure () {  	case $os in  	linux-gnueabi |\  	linux-gnuspe |\ -	linux-musl*) +	linux-musleabi |\ +	linux-muslspe |\ +	linux-musl )  		os=linux  		;;  		*) @@ -71,7 +73,7 @@ do_configure () {  	linux-i686)  		target=linux-elf  		;; -	linux-gnux32-x86_64) +	linux-gnux32-x86_64 | linux-muslx32-x86_64 )  		target=linux-x32  		;;  	linux-gnu64-x86_64) | 
