summaryrefslogtreecommitdiff
path: root/toolchain/musl/patches-0.9.11/000-install_portability.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-02-24 21:10:11 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-02-24 21:10:11 +0000
commitde750029f42feb180f12671fa9a8e17a49432fe2 (patch)
treeceb25e515780e2c075ff15fddad9aeeafc12c1e1 /toolchain/musl/patches-0.9.11/000-install_portability.patch
parent06a3d35eda134aa178747be2a3b92e35625863ec (diff)
downloadmtk-20170518-de750029f42feb180f12671fa9a8e17a49432fe2.zip
mtk-20170518-de750029f42feb180f12671fa9a8e17a49432fe2.tar.gz
mtk-20170518-de750029f42feb180f12671fa9a8e17a49432fe2.tar.bz2
toolchain/musl: add version 0.9.15, remove older versions (still broken, but closer to being functional than before)
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39750
Diffstat (limited to 'toolchain/musl/patches-0.9.11/000-install_portability.patch')
-rw-r--r--toolchain/musl/patches-0.9.11/000-install_portability.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/toolchain/musl/patches-0.9.11/000-install_portability.patch b/toolchain/musl/patches-0.9.11/000-install_portability.patch
deleted file mode 100644
index 43c4351..0000000
--- a/toolchain/musl/patches-0.9.11/000-install_portability.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- a/Makefile
-+++ b/Makefile
-@@ -116,16 +116,20 @@
- 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