summaryrefslogtreecommitdiffstats
path: root/recipes-devtools/m4/m4/0002-build-don-t-need-charset.alias-when-building-for-mus.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-devtools/m4/m4/0002-build-don-t-need-charset.alias-when-building-for-mus.patch')
-rw-r--r--recipes-devtools/m4/m4/0002-build-don-t-need-charset.alias-when-building-for-mus.patch44
1 files changed, 44 insertions, 0 deletions
diff --git a/recipes-devtools/m4/m4/0002-build-don-t-need-charset.alias-when-building-for-mus.patch b/recipes-devtools/m4/m4/0002-build-don-t-need-charset.alias-when-building-for-mus.patch
new file mode 100644
index 0000000..4cd4889
--- /dev/null
+++ b/recipes-devtools/m4/m4/0002-build-don-t-need-charset.alias-when-building-for-mus.patch
@@ -0,0 +1,44 @@
1From c7fa0a47956570682e289937bf6f2d0516f491c6 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Andr=C3=A9=20Draszik?= <adraszik@tycoint.com>
3Date: Thu, 23 Mar 2017 12:24:02 +0000
4Subject: [PATCH 2/2] build: don't need charset.alias when building for musl
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9Upstream-Status: Inappropriate [required for m4 1.4.9 (GPLv2) recipe only]
10Signed-off-by: André Draszik <adraszik@tycoint.com>
11---
12 lib/Makefile.am | 9 +++++++--
13 1 file changed, 7 insertions(+), 2 deletions(-)
14
15diff --git a/lib/Makefile.am b/lib/Makefile.am
16index 2575743..4dc17fe 100644
17--- a/lib/Makefile.am
18+++ b/lib/Makefile.am
19@@ -290,7 +290,11 @@ all-local: charset.alias ref-add.sed ref-del.sed
20 charset_alias = $(DESTDIR)$(libdir)/charset.alias
21 charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
22 install-exec-local: all-local
23- test $(GLIBC21) != no || $(mkinstalldirs) $(DESTDIR)$(libdir)
24+ case '$(host_os)' in \
25+ linux-musl*) \
26+ : ;;\
27+ *) \
28+ test $(GLIBC21) != no || $(mkinstalldirs) $(DESTDIR)$(libdir) ;\
29 if test -f $(charset_alias); then \
30 sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
31 $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
32@@ -301,7 +305,8 @@ install-exec-local: all-local
33 $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
34 rm -f $(charset_tmp) ; \
35 fi ; \
36- fi
37+ fi ;\
38+ esac
39
40 uninstall-local: all-local
41 if test -f $(charset_alias); then \
42--
432.11.0
44