From 269a79e8c1a223bb5bb830c15e00be27d1aa60c3 Mon Sep 17 00:00:00 2001 From: Johannes Morgenroth Date: Fri, 22 Aug 2014 13:57:02 +0200 Subject: [PATCH] dtndht: 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/dtndht/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/dtndht/Makefile b/libs/dtndht/Makefile index 6bc8084252..7ab618145b 100644 --- a/libs/dtndht/Makefile +++ b/libs/dtndht/Makefile @@ -41,7 +41,7 @@ endef define Package/dtndht/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,dtndht)) -- 2.30.2