summaryrefslogtreecommitdiffstats
path: root/toolchain
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-12-10 14:24:24 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-12-10 14:24:24 +0000
commite1b7576185eae10a4ff60b0c183a7cfa48c26aa3 (patch)
treeb9ccd1fea7a957116b15998f30c47414d8386d28 /toolchain
parent8ee1ca4c767126dc080e9c576d3aaa597a5ac128 (diff)
toolchain/musl: simplify musl install steps
Some of these were copy/pasted from uClibc, but they are not necessary at all for musl-libc. Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34598 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain')
-rw-r--r--toolchain/musl/Makefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/toolchain/musl/Makefile b/toolchain/musl/Makefile
index 79ea175a4..f95bb05ce 100644
--- a/toolchain/musl/Makefile
+++ b/toolchain/musl/Makefile
@@ -21,18 +21,6 @@ endef
define Host/Install
$(call Host/SetToolchainInfo)
$(MAKE) -C $(HOST_BUILD_DIR) DESTDIR="$(TOOLCHAIN_DIR)/" install
- ( cd $(TOOLCHAIN_DIR) ; \
- for d in lib usr/lib ; do \
- for f in libc.so libpthread.so libgcc_s.so ; do \
- if [ -f $$$$d/$$$$f -a ! -L $$$$d/$$$$f ] ; then \
- $(SED) 's,/usr/lib/,,g;s,/lib/,,g' $$$$d/$$$$f ; \
- fi \
- done \
- done \
- )
- rm -f \
- $(TOOLCHAIN_DIR)/lib/libresolv*.so* \
- $(TOOLCHAIN_DIR)/lib/libnsl*.so*
endef
$(eval $(call HostBuild))