diff options
Diffstat (limited to 'meta/recipes-extended/libidn/libidn2')
-rw-r--r-- | meta/recipes-extended/libidn/libidn2/Unset-need_charset_alias-when-building-for-musl.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/meta/recipes-extended/libidn/libidn2/Unset-need_charset_alias-when-building-for-musl.patch b/meta/recipes-extended/libidn/libidn2/Unset-need_charset_alias-when-building-for-musl.patch deleted file mode 100644 index ace50bbfde..0000000000 --- a/meta/recipes-extended/libidn/libidn2/Unset-need_charset_alias-when-building-for-musl.patch +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | Unset need_charset_alias when building for musl | ||
2 | |||
3 | localcharset uses ac_cv_gnu_library_2_1 from glibc21.m4 | ||
4 | which actually shoudl be fixed in gnulib and then all downstream | ||
5 | projects will get it eventually. For now we apply the fix to | ||
6 | coreutils | ||
7 | |||
8 | Upstream-Status: Pending | ||
9 | |||
10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
11 | Index: libidn2-2.0.5/unistring/Makefile.am | ||
12 | =================================================================== | ||
13 | --- libidn2-2.0.5.orig/unistring/Makefile.am | ||
14 | +++ libidn2-2.0.5/unistring/Makefile.am | ||
15 | @@ -293,7 +293,7 @@ install-exec-localcharset: all-local | ||
16 | case '$(host_os)' in \ | ||
17 | darwin[56]*) \ | ||
18 | need_charset_alias=true ;; \ | ||
19 | - darwin* | cygwin* | mingw* | pw32* | cegcc*) \ | ||
20 | + darwin* | cygwin* | mingw* | pw32* | cegcc* | linux-musl*) \ | ||
21 | need_charset_alias=false ;; \ | ||
22 | *) \ | ||
23 | need_charset_alias=true ;; \ | ||