toolchain: fix libpthread package for musl based toolchains (#12651)

Signed-off-by: Florian Fainelli <florian@openwrt.org>

SVN-Revision: 35069
This commit is contained in:
Florian Fainelli 2013-01-09 15:36:43 +00:00
parent 52b030cf16
commit 9348998887

View file

@ -451,6 +451,7 @@ ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
define Package/libpthread/install
$(INSTALL_DIR) $(1)/lib
ifneq ($(CONFIG_USE_MUSL),y)
$(CP) \
$(TOOLCHAIN_DIR)/lib/libpthread.so.* \
$(if $(BUILD_LIBGCC),\
@ -458,6 +459,7 @@ ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
$(TOOLCHAIN_DIR)/lib/libpthread-$(LIBC_SO_VERSION).so \
) \
$(1)/lib/
endif
endef
define Package/libthread-db/install