summaryrefslogtreecommitdiffstats
path: root/bash/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'bash/Pkgfile')
-rwxr-xr-xbash/Pkgfile32
1 files changed, 17 insertions, 15 deletions
diff --git a/bash/Pkgfile b/bash/Pkgfile
index 9b3ce5e1d..34d731240 100755
--- a/bash/Pkgfile
+++ b/bash/Pkgfile
@@ -5,22 +5,24 @@
name=bash
version=4.2
-release=1
-source=( http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz\
- http://www.linuxfromscratch.org/patches/lfs/development/bash-$version-fixes-1.patch)
+release=2
+source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz
+ http://www.linuxfromscratch.org/patches/lfs/development/bash-$version-fixes-4.patch)
build() {
-cd $name-$version
-patch -Np1 -i ../bash-$version-fixes-1.patch
-./configure --prefix=/usr --bindir=/bin \
- --htmldir=/usr/share/doc/$name-$version \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man \
- --without-bash-malloc --with-installed-readline
-make
-make DESTDIR=$PKG install
-if [ -f $PKG/usr/share/info/dir ]; then
- rm $PKG/usr/share/info/dir
-fi
+ cd $name-$version
+ patch -Np1 -i ../bash-$version-fixes-4.patch
+ ./configure --prefix=/usr \
+ --bindir=/bin \
+ --htmldir=/usr/share/doc/$name-$version \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man \
+ --without-bash-malloc \
+ --with-installed-readline
+ make
+ make DESTDIR=$PKG install
+ if [ -f $PKG/usr/share/info/dir ]; then
+ rm $PKG/usr/share/info/dir
+ fi
rm -rf $PKG/usr/share/doc
}