diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-08-08 02:24:45 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-08-08 02:24:45 +0000 |
commit | 5d58e1d9222ac685d42238c3df3ed58c11bd11bf (patch) | |
tree | 8c931276925601a0ab3b0e1683bc4b18382961fa /package/base-files/Makefile | |
parent | 33da5011070a62ee5a875c757b437190efb19da2 (diff) |
install static libraries from uclibc to the rootfs staging dir
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17169 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/Makefile')
-rw-r--r-- | package/base-files/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 2c88458af4..6901829f29 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -247,6 +247,10 @@ define Package/libc/install $(call Package/$(LIBC)/install,$1) endef +define Package/libc/install_lib + $(CP) $(filter-out %/libdl_pic.a,$(wildcard $(TOOLCHAIN_DIR)/usr/lib/lib*.a)) $(1)/lib/ +endef + define Package/libpthread/install $(INSTALL_DIR) $(1)/lib $(CP) $(TOOLCHAIN_DIR)/lib/libpthread.so.* $(1)/lib/ |