aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorW. Michael Petullo <mike@flyn.org>2020-01-13 13:57:57 -0500
committerW. Michael Petullo <mike@flyn.org>2020-01-13 13:57:57 -0500
commitd6cb60f8f479db7a99cd4d81ea05258c76b07092 (patch)
tree18448328f4eee1a2f8a7a73576844acfc8de7227
parent518628c2143abba2924063a20573f5508ae5f9c9 (diff)
cyrus-sasl: install module symbolic links of form libX.so
I was too aggressive in recommending that we remove the module symbolic links of form libX.so as part of commit c9ce769b. It turns out that at least Postfix relies on these, and I suspect any application that makes use of libsasl2 will require them too. Signed-off-by: W. Michael Petullo <mike@flyn.org>
-rw-r--r--libs/cyrus-sasl/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/cyrus-sasl/Makefile b/libs/cyrus-sasl/Makefile
index a14b5030c..f0ae3c218 100644
--- a/libs/cyrus-sasl/Makefile
+++ b/libs/cyrus-sasl/Makefile
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=cyrus-sasl
PKG_VERSION:=2.1.27
-PKG_RELEASE:=2
+PKG_RELEASE:=3
PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
@@ -109,7 +109,7 @@ define Package/libsasl2/install
$(INSTALL_DIR) $(1)/usr/lib/
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libsasl2.so.* $(1)/usr/lib/
$(INSTALL_DIR) $(1)/usr/lib/sasl2
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/sasl2/lib*.so.* $(1)/usr/lib/sasl2/
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/sasl2/lib*.so* $(1)/usr/lib/sasl2/
endef
$(eval $(call BuildPackage,libsasl2))