diff options
Diffstat (limited to 'abs/core/which/which.install')
-rw-r--r-- | abs/core/which/which.install | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/abs/core/which/which.install b/abs/core/which/which.install index 899bd6f..167e250 100644 --- a/abs/core/which/which.install +++ b/abs/core/which/which.install @@ -2,8 +2,9 @@ infodir=/usr/share/info filelist=(which.info) post_install() { + [ -x usr/bin/install-info ] || return 0 for file in ${filelist[@]}; do - install-info $infodir/$file $infodir/dir 2> /dev/null + install-info $infodir/$file.gz $infodir/dir 2> /dev/null done } @@ -12,9 +13,8 @@ post_upgrade() { } pre_remove() { + [ -x usr/bin/install-info ] || return 0 for file in ${filelist[@]}; do install-info --delete $infodir/$file $infodir/dir 2> /dev/null done } - -# vim:set ts=2 sw=2 et: |