diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-10-19 21:45:58 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-10-19 21:45:58 +0000 |
commit | e34f086b821ae50f2434f43e31afde5574c21f49 (patch) | |
tree | 8c059e41199d80d53e778ac46b8af73dd9031a40 /package/libs | |
parent | 911415a0a03f482792fb1d2d65b173dd266fd657 (diff) | |
download | upstream-e34f086b821ae50f2434f43e31afde5574c21f49.tar.gz upstream-e34f086b821ae50f2434f43e31afde5574c21f49.tar.bz2 upstream-e34f086b821ae50f2434f43e31afde5574c21f49.zip |
toolchain: when using musl, install a symlink from ld-musl-*.so to /usr/bin/ldd
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42974 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libs')
-rw-r--r-- | package/libs/toolchain/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/libs/toolchain/Makefile b/package/libs/toolchain/Makefile index 72ce6b90e1..1de0c2807a 100644 --- a/package/libs/toolchain/Makefile +++ b/package/libs/toolchain/Makefile @@ -468,13 +468,14 @@ ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),) LD_MUSL_NAME = $(notdir $(firstword $(wildcard $(TOOLCHAIN_DIR)/lib/ld-musl-*.so*))) define Package/musl/install - $(INSTALL_DIR) $(1)/lib + $(INSTALL_DIR) $(1)/lib $(1)/usr/bin $(CP) \ $(TOOLCHAIN_DIR)/lib/ld-musl-*.so* \ $(1)/lib/ $(CP) \ $(TOOLCHAIN_DIR)/lib/libc.so* \ $(1)/lib/ + ln -s ../../lib/$(LD_MUSL_NAME) $(1)/usr/bin/ldd $(if $(findstring -sf.so,$(LD_MUSL_NAME)),ln -s $(LD_MUSL_NAME) $(1)/lib/$(subst -sf.so,.so,$(LD_MUSL_NAME))) endef |