diff options
author | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2018-12-07 07:57:13 -0200 |
---|---|---|
committer | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2018-12-07 08:03:18 -0200 |
commit | 72f9bf3a565cb5614405449be4b8a47e71813569 (patch) | |
tree | 8a5dc120b152fb0b9a6a3bce0ca8283f8ef1a669 | |
parent | bfc2435f7d42d0978755102864a8ecc8bb6518ea (diff) |
libtins: copy libtins.so.* to package
Package was installing libins.so, but the soname is set to
libtins.so.4.0.
Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
-rw-r--r-- | libs/libtins/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/libtins/Makefile b/libs/libtins/Makefile index aace5e971..8abc6aa46 100644 --- a/libs/libtins/Makefile +++ b/libs/libtins/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libtins PKG_VERSION:=4.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_MAINTAINER:= Steven Hessing <steven.hessing@gmail.com> @@ -49,7 +49,7 @@ endef define Package/libtins/install $(INSTALL_DIR) $(1)/usr/lib - $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libtins.so $(1)/usr/lib/ + $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libtins.so.* $(1)/usr/lib/ endef $(eval $(call BuildPackage,libtins)) |