Browse Source

Merge pull request #1504 from hauke/boost

boost: do not fail when no shared libs were build
lilik-openwrt-22.03
Jo-Philipp Wich 9 years ago
parent
commit
35ea16f3b6
1 changed files with 3 additions and 10 deletions
  1. +3
    -10
      libs/boost/Makefile

+ 3
- 10
libs/boost/Makefile View File

@ -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


Loading…
Cancel
Save