diff options
author | James Meyer <james.meyer@operamail.com> | 2014-02-16 23:39:08 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2014-02-19 19:03:02 (GMT) |
commit | 88f8abd60dcd395d859e53c3161134c371eb4c9e (patch) | |
tree | e93b2dd0d4931554681bebaed6a8896dcbbce4e1 /abs/core/bash/bash.install | |
parent | 04e5bb0a24fe11091d7966d7260604c91de7bc74 (diff) | |
download | linhes_pkgbuild-88f8abd60dcd395d859e53c3161134c371eb4c9e.zip linhes_pkgbuild-88f8abd60dcd395d859e53c3161134c371eb4c9e.tar.gz linhes_pkgbuild-88f8abd60dcd395d859e53c3161134c371eb4c9e.tar.bz2 |
bash: update binary path
refs #961
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 |