diff options
Diffstat (limited to 'abs/core/bash/bash.install')
-rw-r--r-- | abs/core/bash/bash.install | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/abs/core/bash/bash.install b/abs/core/bash/bash.install index bc75e9b..a10e6e9 100644 --- a/abs/core/bash/bash.install +++ b/abs/core/bash/bash.install @@ -1,17 +1,13 @@ info_dir=usr/share/info info_files=(bash.info) -post_install() { +post_upgrade() { [ -x usr/bin/install-info ] || return 0 for f in ${info_files[@]}; do usr/bin/install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null done } -post_upgrade() { - post_install $1 -} - pre_remove() { [ -x usr/bin/install-info ] || return 0 for f in ${info_files[@]}; do |