From ea805a8f26b812999c47fbd2863940c162408f3f Mon Sep 17 00:00:00 2001 From: Johannes Morgenroth Date: Fri, 22 Aug 2014 13:57:08 +0200 Subject: [PATCH] ibrcommon: 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/ibrcommon/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ibrcommon/Makefile b/libs/ibrcommon/Makefile index fb95b950c..37e6c1763 100644 --- a/libs/ibrcommon/Makefile +++ b/libs/ibrcommon/Makefile @@ -44,7 +44,7 @@ endef define Package/ibrcommon/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,ibrcommon))