aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/musl/patches-0.9.9/005-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
commit58d22ab8a4b1cb33ed55a1600270f6cbadfd98f8 (patch)
tree3890efe869cec8c18e3c5d1290deccaffec3f56b /toolchain/musl/patches-0.9.9/005-install_portability.patch
parent2c60412f00cbf5d2877e7041fd7c672ebe21fb6e (diff)
downloadupstream-58d22ab8a4b1cb33ed55a1600270f6cbadfd98f8.tar.gz
upstream-58d22ab8a4b1cb33ed55a1600270f6cbadfd98f8.tar.bz2
upstream-58d22ab8a4b1cb33ed55a1600270f6cbadfd98f8.zip
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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39750 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/musl/patches-0.9.9/005-install_portability.patch')
-rw-r--r--toolchain/musl/patches-0.9.9/005-install_portability.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/toolchain/musl/patches-0.9.9/005-install_portability.patch b/toolchain/musl/patches-0.9.9/005-install_portability.patch
deleted file mode 100644
index 3e018c67e9..0000000000
--- a/toolchain/musl/patches-0.9.9/005-install_portability.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- 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