summaryrefslogtreecommitdiff
path: root/toolchain
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-05-09 19:26:53 +0000
committerFelix Fietkau <nbd@openwrt.org>2013-05-09 19:26:53 +0000
commit5f14f32d8a3ff401cd305504613fb4432255b604 (patch)
tree34c6155b2832464f870d1d9e95d1940c7f9abc26 /toolchain
parent98f6dc1b432ba46641a4ee9d7ff426abd6a69123 (diff)
downloadmtk-20170518-5f14f32d8a3ff401cd305504613fb4432255b604.zip
mtk-20170518-5f14f32d8a3ff401cd305504613fb4432255b604.tar.gz
mtk-20170518-5f14f32d8a3ff401cd305504613fb4432255b604.tar.bz2
toolchain/musl: fix build issues on mac os x
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 36588
Diffstat (limited to 'toolchain')
-rw-r--r--toolchain/musl/patches-0.9.8/005-install_portability.patch27
-rw-r--r--toolchain/musl/patches-0.9.9/005-install_portability.patch27
2 files changed, 54 insertions, 0 deletions
diff --git a/toolchain/musl/patches-0.9.8/005-install_portability.patch b/toolchain/musl/patches-0.9.8/005-install_portability.patch
new file mode 100644
index 0000000..3e018c6
--- /dev/null
+++ b/toolchain/musl/patches-0.9.8/005-install_portability.patch
@@ -0,0 +1,27 @@
+--- a/Makefile
++++ b/Makefile
+@@ -116,16 +116,20 @@ tools/musl-gcc: config.mak
+ chmod +x $@
+
+ $(DESTDIR)$(bindir)/%: tools/%
+- install -D $< $@
++ mkdir -p $(dir $@)
++ install $< $@
+
+ $(DESTDIR)$(libdir)/%.so: lib/%.so
+- install -D -m 755 $< $@
++ mkdir -p $(dir $@)
++ install -m 755 $< $@
+
+ $(DESTDIR)$(libdir)/%: lib/%
+- install -D -m 644 $< $@
++ mkdir -p $(dir $@)
++ install -m 644 $< $@
+
+ $(DESTDIR)$(includedir)/%: include/%
+- install -D -m 644 $< $@
++ mkdir -p $(dir $@)
++ install -m 644 $< $@
+
+ $(DESTDIR)$(LDSO_PATHNAME): $(DESTDIR)$(syslibdir)
+ ln -sf $(libdir)/libc.so $@ || true
diff --git a/toolchain/musl/patches-0.9.9/005-install_portability.patch b/toolchain/musl/patches-0.9.9/005-install_portability.patch
new file mode 100644
index 0000000..3e018c6
--- /dev/null
+++ b/toolchain/musl/patches-0.9.9/005-install_portability.patch
@@ -0,0 +1,27 @@
+--- a/Makefile
++++ b/Makefile
+@@ -116,16 +116,20 @@ tools/musl-gcc: config.mak
+ chmod +x $@
+
+ $(DESTDIR)$(bindir)/%: tools/%
+- install -D $< $@
++ mkdir -p $(dir $@)
++ install $< $@
+
+ $(DESTDIR)$(libdir)/%.so: lib/%.so
+- install -D -m 755 $< $@
++ mkdir -p $(dir $@)
++ install -m 755 $< $@
+
+ $(DESTDIR)$(libdir)/%: lib/%
+- install -D -m 644 $< $@
++ mkdir -p $(dir $@)
++ install -m 644 $< $@
+
+ $(DESTDIR)$(includedir)/%: include/%
+- install -D -m 644 $< $@
++ mkdir -p $(dir $@)
++ install -m 644 $< $@
+
+ $(DESTDIR)$(LDSO_PATHNAME): $(DESTDIR)$(syslibdir)
+ ln -sf $(libdir)/libc.so $@ || true