14 lines
237 B
Text
14 lines
237 B
Text
post_install() {
|
|
usr/bin/ldconfig -r .
|
|
}
|
|
|
|
post_upgrade() {
|
|
if [ "$(vercmp $2 1.14.4-2)" -lt 0 ]; then
|
|
sed -i -e '/\/usr\/lib\/libfakeroot/d' etc/ld.so.conf
|
|
fi
|
|
usr/bin/ldconfig -r .
|
|
}
|
|
|
|
pre_remove() {
|
|
usr/bin/ldconfig -r .
|
|
}
|