ibrdtn: Fix install target
authorJohannes Morgenroth <morgenroth@ibr.cs.tu-bs.de>
Fri, 22 Aug 2014 11:57:33 +0000 (13:57 +0200)
committerJohannes Morgenroth <morgenroth@ibr.cs.tu-bs.de>
Fri, 22 Aug 2014 12:07:58 +0000 (14:07 +0200)
The previous copying command includes non-existing variables. This commit replaces
the command with a more generic one.

Signed-off-by: Johannes Morgenroth <morgenroth@ibr.cs.tu-bs.de>
libs/ibrdtn/Makefile

index d86dcc3365db364237f123778dc064c1acf8ecd8..02a1c3c874af44cd06010825586fd6d0351ab018 100644 (file)
@@ -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))