mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-25 02:52:16 +08:00
15 lines
228 B
Plaintext
15 lines
228 B
Plaintext
post_install() {
|
|
sbin/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
|
|
sbin/ldconfig -r .
|
|
}
|
|
|
|
pre_remove() {
|
|
sbin/ldconfig -r .
|
|
}
|