From de750029f42feb180f12671fa9a8e17a49432fe2 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 24 Feb 2014 21:10:11 +0000 Subject: toolchain/musl: add version 0.9.15, remove older versions (still broken, but closer to being functional than before) Signed-off-by: Felix Fietkau SVN-Revision: 39750 --- .../patches-0.9.11/000-install_portability.patch | 27 ---------------------- 1 file changed, 27 deletions(-) delete mode 100644 toolchain/musl/patches-0.9.11/000-install_portability.patch (limited to 'toolchain/musl/patches-0.9.11/000-install_portability.patch') 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 -- cgit v1.1