diff options
author | piernov <piernov@piernov.org> | 2012-03-04 06:10:54 +0100 |
---|---|---|
committer | piernov <piernov@piernov.org> | 2012-03-04 06:10:54 +0100 |
commit | 20b96f05bd1e06bcb2b010f46bdfeb21a9f9e6cf (patch) | |
tree | 8872c4b1d8368f3eb1511e46c141ddf166ba2c89 /bash/Pkgfile | |
parent | 628c8498af2f7b9906f997518d095538f9f6cfc5 (diff) | |
download | nutyx-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/Pkgfile')
-rwxr-xr-x | bash/Pkgfile | 32 |
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 } |