From ab25b5cb109409db4c654bb9a7f1bfe78d6adc4b Mon Sep 17 00:00:00 2001 From: Johannes Morgenroth Date: Fri, 22 Aug 2014 13:57:33 +0200 Subject: [PATCH] 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 --- libs/ibrdtn/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ibrdtn/Makefile b/libs/ibrdtn/Makefile index d86dcc3365..02a1c3c874 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)) -- 2.30.2