Add 8.34 - Build bash

This commit is contained in:
Aditya 2023-01-11 15:52:14 +05:30
parent 5f67184967
commit edb13908fe
2 changed files with 51 additions and 0 deletions

View file

@ -0,0 +1,39 @@
#!/bin/bash
cd /source
tar xf bash-5.1.16.tar.gz
cd bash-5.1.16
./configure --prefix=/usr \
--docdir=/usr/share/doc/bash-5.1.16 \
--without-bash-malloc \
--with-installed-readline
if [ $? -ne 0 ]
then
exit 1
fi
make -j5
if [ $? -ne 0 ]
then
exit 1
fi
chown -Rv tester .
su -s /usr/bin/expect tester << EOF
set timeout -1
spawn make tests
expect eof
lassign [wait] _ _ _ value
exit $value
EOF
make install
exec /usr/bin/bash --login
cd /source
rm -rf bash-5.1.16

View file

@ -942,3 +942,15 @@ then
stop_script "chapter8/8.33-grep.sh"
fi
# Chapter 8.34
# ============
echo "Building bash"
su -c "bash $SCRIPT/chapter8/8.34-bash.sh"
# Exit on error
check_exit_code
if [ $exit_status -ne 0 ]
then
stop_script "chapter8/8.34-bash.sh"
fi