blob: db50e77d0bb23c90cebac63cee675865ee736f7d (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
soname='libwolfssl.so.24'
lib="/usr/lib/$(cat /etc/proteanos_arch)/libwolfssl.so.24.1.0"
if [ x"${1}" = x'remove' ]; then
update-alternatives --remove "${soname}" "${lib}.std"
fi
|