diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-02-24 21:10:11 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-02-24 21:10:11 +0000 |
commit | de750029f42feb180f12671fa9a8e17a49432fe2 (patch) | |
tree | ceb25e515780e2c075ff15fddad9aeeafc12c1e1 /toolchain/musl/patches-0.9.9/005-install_portability.patch | |
parent | 06a3d35eda134aa178747be2a3b92e35625863ec (diff) | |
download | upstream-de750029f42feb180f12671fa9a8e17a49432fe2.tar.gz upstream-de750029f42feb180f12671fa9a8e17a49432fe2.tar.bz2 upstream-de750029f42feb180f12671fa9a8e17a49432fe2.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>
SVN-Revision: 39750
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.patch | 27 |
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 |