PKGBUILDs/core/glibc/glibc.install
Michael Lass af027102c3 glibc: sync install script with Arch Linux [core]
locale-gen is now called on each update. The update to 2.22-4 broke locales
so force an update by raising the pkgrel to 4.1.
2016-02-18 19:03:27 +01:00

23 lines
501 B
Plaintext

infodir=usr/share/info
filelist=(libc.info{,-1,-2,-3,-4,-5,-6,-7,-8,-9,-10,-11})
post_upgrade() {
#if [[ $(vercmp 2.22-3 $2) = 1 ]]; then
locale-gen
#fi
ldconfig -r .
[[ -x usr/bin/install-info ]] || return 0
for file in ${filelist[@]}; do
install-info $infodir/$file.gz $infodir/dir 2> /dev/null
done
}
pre_remove() {
[[ -x usr/bin/install-info ]] || return 0
for file in ${filelist[@]}; do
install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
done
}