diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2018-12-11 19:14:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-11 19:14:02 +0200 |
commit | 8a2a06265894c131848bdcf0914f44c0a8cb8a79 (patch) | |
tree | 930177e6e414d9350a6e2efc46b7d9ff6efd93e7 | |
parent | c729969e06e9b0088b4cf6aec3f1d5fb77401eee (diff) | |
parent | 72f9bf3a565cb5614405449be4b8a47e71813569 (diff) |
Merge pull request #7605 from cotequeiroz/libtins_soname
libtins: copy libtins.so.* to package
-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)) |