blob: 8f8fc9529df13945b544e6f10c8f784e4e86ca86 (
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}.dbg"
fi
|