lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 35ea16f3b690a29ac4264345a1b759d2fd4b7c29
parent 9bf03cb1f50be079bc33d869d0d9c8b268ae6c88
Author: Jo-Philipp Wich <jow@openwrt.org>
Date:   Tue, 30 Jun 2015 19:41:14 +0200

Merge pull request #1504 from hauke/boost

boost: do not fail when no shared libs were build
Diffstat:
Mlibs/boost/Makefile | 13+++----------
1 file changed, 3 insertions(+), 10 deletions(-)

diff --git a/libs/boost/Makefile b/libs/boost/Makefile @@ -226,16 +226,9 @@ define Build/InstallDev $(1)/usr/include/boost/ \ # copies _all_ header files - independent of <--with-library>-argument above - if [ -d $(PKG_INSTALL_DIR)/lib ]; then \ - $(INSTALL_DIR) \ - $(1)/usr/lib; \ - $(CP) \ - $(PKG_INSTALL_DIR)/lib/*.a \ - $(1)/usr/lib/; \ - $(CP) \ - $(PKG_INSTALL_DIR)/lib/*.so* \ - $(1)/usr/lib/; \ - fi + $(INSTALL_DIR) $(1)/usr/lib + -$(CP) $(PKG_INSTALL_DIR)/lib/*.a $(1)/usr/lib/ + -$(CP) $(PKG_INSTALL_DIR)/lib/*.so* $(1)/usr/lib/ endef define Host/Install