From fab24d25f3dd4f1aa24dbe1ac02def2d4c10e816 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Thu, 06 Aug 2020 17:44:04 -0400 Subject: Manage SONAME link with update-alternatives --- (limited to 'libwolfssl.24.pkg/postinst') diff --git a/libwolfssl.24.pkg/postinst b/libwolfssl.24.pkg/postinst index c0f8f53..ab80e84 100644 --- a/libwolfssl.24.pkg/postinst +++ b/libwolfssl.24.pkg/postinst @@ -1,8 +1,12 @@ #!/bin/sh soname='libwolfssl.so.24' -lib="/usr/lib/$(cat /etc/proteanos_arch)/libwolfssl.so.24.1.0" +libfile="/usr/lib/$(cat /etc/proteanos_arch)/libwolfssl.so.24.1.0" +liblink="/usr/lib/$(cat /etc/proteanos_arch)/libwolfssl.so.24" if [ x"${1}" = x'configure' ]; then - update-alternatives --install "${lib}" "${soname}" "${lib}.std" 10 + update-alternatives --install "${libfile}" "${soname}" \ + "${libfile}.std" 10 + update-alternatives --install "${liblink}" "${soname}" \ + "${liblink}.std" 10 fi -- cgit v0.9.1