#!/bin/sh # part of the gn*nix conspiracy http://gnnix.org # Copyright (C) Linus Sphinx 2004 # func to make the distro system gnxbash() { gnxunwrap ${1} for i in 01 02 03 04 05 06 07 08 09 10 11 12 13 do patch -Np0 -i ${PATCH}/bash30-0${i} done gnxconfigure --prefix=${PREFIX} --without-bash-malloc --enable-separate-helpfiles \ --enable-job-control --enable-static-link gnxmake clean gnxfilelist start ${1} gnxmake gnxmake tests gnxmake install mv /usr/bin/bash /bin/bash ln -sf /bin/bash /bin/sh gnxfilelist finish ${1} } #eof