summaryrefslogtreecommitdiffstats
path: root/bash
diff options
context:
space:
mode:
authorpiernov <piernov@piernov.org>2012-03-04 06:10:54 +0100
committerpiernov <piernov@piernov.org>2012-03-04 06:10:54 +0100
commit20b96f05bd1e06bcb2b010f46bdfeb21a9f9e6cf (patch)
tree8872c4b1d8368f3eb1511e46c141ddf166ba2c89 /bash
parent628c8498af2f7b9906f997518d095538f9f6cfc5 (diff)
downloadnutyx-pakxe-20b96f05bd1e06bcb2b010f46bdfeb21a9f9e6cf.tar.gz
nutyx-pakxe-20b96f05bd1e06bcb2b010f46bdfeb21a9f9e6cf.tar.bz2
nutyx-pakxe-20b96f05bd1e06bcb2b010f46bdfeb21a9f9e6cf.tar.xz
nutyx-pakxe-20b96f05bd1e06bcb2b010f46bdfeb21a9f9e6cf.zip
bash 4.2-2 màj patch
Diffstat (limited to 'bash')
-rw-r--r--bash/.md5sum.i6862
-rw-r--r--bash/.md5sum.x86_642
-rwxr-xr-xbash/Pkgfile32
3 files changed, 19 insertions, 17 deletions
diff --git a/bash/.md5sum.i686 b/bash/.md5sum.i686
index 3bb1bc31c..fc83612ba 100644
--- a/bash/.md5sum.i686
+++ b/bash/.md5sum.i686
@@ -1,2 +1,2 @@
-abae789c2807cb7c7c4c452fa3986f85 bash-4.2-fixes-1.patch
+244e3ff74d53792f1db32dea75dc8627 bash-4.2-fixes-4.patch
3fb927c7c33022f1c327f14a81c0d4b0 bash-4.2.tar.gz
diff --git a/bash/.md5sum.x86_64 b/bash/.md5sum.x86_64
index 3bb1bc31c..fc83612ba 100644
--- a/bash/.md5sum.x86_64
+++ b/bash/.md5sum.x86_64
@@ -1,2 +1,2 @@
-abae789c2807cb7c7c4c452fa3986f85 bash-4.2-fixes-1.patch
+244e3ff74d53792f1db32dea75dc8627 bash-4.2-fixes-4.patch
3fb927c7c33022f1c327f14a81c0d4b0 bash-4.2.tar.gz
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
}