blob: 9344a9f939413f6d0a2cece85af02fbe2ddfc6ad (
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'configure' ]; then
update-alternatives --install "${lib}" "${soname}" "${lib}.dbg" 20
fi
|