diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-05-09 20:34:21 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-05-09 20:34:21 +0000 |
commit | 1bb5b406f4f6df0583afca0096fb0cc7a9bc1754 (patch) | |
tree | 99b54c4be6db5919a4ccdf3283a8cf081f237976 /toolchain/musl/patches-0.9.10/000-install_portability.patch | |
parent | 20f34f8eccaf8576b9fdc0facb54be21eb070c4c (diff) | |
download | upstream-1bb5b406f4f6df0583afca0096fb0cc7a9bc1754.tar.gz upstream-1bb5b406f4f6df0583afca0096fb0cc7a9bc1754.tar.bz2 upstream-1bb5b406f4f6df0583afca0096fb0cc7a9bc1754.zip |
toolchain/musl: add version 0.9.10
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36591 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/musl/patches-0.9.10/000-install_portability.patch')
-rw-r--r-- | toolchain/musl/patches-0.9.10/000-install_portability.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/toolchain/musl/patches-0.9.10/000-install_portability.patch b/toolchain/musl/patches-0.9.10/000-install_portability.patch new file mode 100644 index 0000000000..3e018c67e9 --- /dev/null +++ b/toolchain/musl/patches-0.9.10/000-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 |