diff options
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl.inc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl.inc b/meta/recipes-connectivity/openssl/openssl.inc index b839c00dde..a99953e4bc 100644 --- a/meta/recipes-connectivity/openssl/openssl.inc +++ b/meta/recipes-connectivity/openssl/openssl.inc | |||
@@ -60,17 +60,17 @@ do_configure () { | |||
60 | ln -sf apps/openssl.pod crypto/crypto.pod ssl/ssl.pod doc/ | 60 | ln -sf apps/openssl.pod crypto/crypto.pod ssl/ssl.pod doc/ |
61 | 61 | ||
62 | os=${HOST_OS} | 62 | os=${HOST_OS} |
63 | if [ "x$os" = "xlinux-uclibc" ]; then | 63 | case $os in |
64 | linux-uclibceabi |\ | ||
65 | linux-gnueabi |\ | ||
66 | linux-uclibcspe |\ | ||
67 | linux-gnuspe |\ | ||
68 | linux-musl*) | ||
64 | os=linux | 69 | os=linux |
65 | elif [ "x$os" = "xlinux-uclibceabi" ]; then | 70 | ;; |
66 | os=linux | 71 | *) |
67 | elif [ "x$os" = "xlinux-uclibcspe" ]; then | 72 | ;; |
68 | os=linux | 73 | esac |
69 | elif [ "x$os" = "xlinux-gnuspe" ]; then | ||
70 | os=linux | ||
71 | elif [ "x$os" = "xlinux-gnueabi" ]; then | ||
72 | os=linux | ||
73 | fi | ||
74 | target="$os-${HOST_ARCH}" | 74 | target="$os-${HOST_ARCH}" |
75 | case $target in | 75 | case $target in |
76 | linux-arm) | 76 | linux-arm) |