diff options
Diffstat (limited to 'chapter8/bash.sh')
-rw-r--r-- | chapter8/bash.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/chapter8/bash.sh b/chapter8/bash.sh new file mode 100644 index 0000000..65eb2d8 --- /dev/null +++ b/chapter8/bash.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +patch -Np1 -i ../bash-"${VERSION}"-fixes-1.patch + +sed -i '/^bashline.o:.*shmbchar.h/a bashline.o: ${DEFDIR}/builtext.h' Makefile.in + +./configure --prefix=/usr \ + --docdir=/usr/share/doc/bash-"${VERSION}" \ + --without-bash-malloc \ + --with-installed-readline + +make + +make -j1 install +mv -vf /usr/bin/bash /bin + +#exec /bin/bash --login +h |