A number of install scripts were testing for install-info to no effect, then calling it regardless. For minimal installs, this makes pacman fail on them visibly. This fix replicates what other MSYS2 packages, e.g. autoconf, do. Also none of these packages actually depend on GNU info.
18 lines
404 B
Plaintext
18 lines
404 B
Plaintext
infodir=usr/share/info
|
|
filelist="history.info readline.info rluserman.info"
|
|
|
|
post_upgrade() {
|
|
[ -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
|
|
}
|
|
|