From: Johannes Morgenroth Date: Fri, 22 Aug 2014 11:57:33 +0000 (+0200) Subject: ibrdtn: Fix install target X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=ab25b5cb109409db4c654bb9a7f1bfe78d6adc4b;p=openwrt-packages.git ibrdtn: Fix install target The previous copying command includes non-existing variables. This commit replaces the command with a more generic one. Signed-off-by: Johannes Morgenroth --- diff --git a/libs/ibrdtn/Makefile b/libs/ibrdtn/Makefile index d86dcc336..02a1c3c87 100644 --- a/libs/ibrdtn/Makefile +++ b/libs/ibrdtn/Makefile @@ -44,7 +44,7 @@ endef define Package/ibrdtn/install $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib$(PKG_NAME){.so,-$(PKG_VERSION_MAJOR).$(PKG_VERSION_MINOR).so.*} $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so.* $(1)/usr/lib/ endef $(eval $(call BuildPackage,ibrdtn))