From: Johannes Morgenroth Date: Fri, 22 Aug 2014 11:57:02 +0000 (+0200) Subject: dtndht: Fix install target X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=269a79e8c1a223bb5bb830c15e00be27d1aa60c3;p=openwrt-packages.git 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 --- diff --git a/libs/dtndht/Makefile b/libs/dtndht/Makefile index 6bc808425..7ab618145 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))