diff options
author | Nicolas Thill <nico@openwrt.org> | 2009-12-18 10:32:38 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2009-12-18 10:32:38 +0000 |
commit | 1772df7037555b5a6e487cd9ac389e687e885d81 (patch) | |
tree | d1853c1ca9e81d818430b908a5aaf4cbda99bd10 | |
parent | 6fd0f3502828de12aa3a30e4b3789b4616f498d3 (diff) | |
download | upstream-1772df7037555b5a6e487cd9ac389e687e885d81.tar.gz upstream-1772df7037555b5a6e487cd9ac389e687e885d81.tar.bz2 upstream-1772df7037555b5a6e487cd9ac389e687e885d81.zip |
base-files: check for libpthread_so.a instead of libc_so.a (some gcc/libc combinations don't provide a libpthread_so.a matching libc_so.a)
SVN-Revision: 18810
-rw-r--r-- | package/base-files/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 5957f1406b..67837120b6 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -434,7 +434,7 @@ ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),) endef define Package/libpthread/install_lib - $(if $(wildcard $(TOOLCHAIN_DIR)/usr/lib/libc_so.a),$(CP) $(TOOLCHAIN_DIR)/usr/lib/libpthread_so.a $(1)/lib/libpthread_pic.a) + $(if $(wildcard $(TOOLCHAIN_DIR)/usr/lib/libpthread_so.a),$(CP) $(TOOLCHAIN_DIR)/usr/lib/libpthread_so.a $(1)/lib/libpthread_pic.a) endef define Package/librt/install |