diff options
author | root <root@rshg054.dnsready.net> | 2013-01-29 00:06:25 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-01-29 00:06:25 -0800 |
commit | 2cb7f65fb24926493d457f6931e421e27aa629da (patch) | |
tree | dfd419375945457b6b6dd74c280812f8e5533743 /core/bash | |
parent | 1b9f6dc846379470b620b5dbb9d4d7acd1de148c (diff) |
Tue Jan 29 00:06:25 PST 2013
Diffstat (limited to 'core/bash')
-rw-r--r-- | core/bash/PKGBUILD | 4 | ||||
-rw-r--r-- | core/bash/bash.install | 6 |
2 files changed, 3 insertions, 7 deletions
diff --git a/core/bash/PKGBUILD b/core/bash/PKGBUILD index 730c49061..5c1fc7d4e 100644 --- a/core/bash/PKGBUILD +++ b/core/bash/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 176041 2013-01-26 23:37:21Z allan $ +# $Id: PKGBUILD 176240 2013-01-28 00:29:18Z allan $ # Maintainer: Allan McRae <allan@archlinux.org> # Contributor: Aaron Griffin <aaron@archlinux.org> @@ -6,7 +6,7 @@ pkgname=bash _basever=4.2 _patchlevel=042 #prepare for some patches pkgver=$_basever.$_patchlevel -pkgrel=2 +pkgrel=3 pkgdesc="The GNU Bourne Again shell" arch=('i686' 'x86_64') license=('GPL') diff --git a/core/bash/bash.install b/core/bash/bash.install index bc75e9b6a..a10e6e909 100644 --- a/core/bash/bash.install +++ b/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 |