Add 6.4 - Build bash

This commit is contained in:
Aditya 2023-01-09 11:06:59 +05:30
parent fc4249236b
commit 6a3a783ac7
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,29 @@
#!/bin/bash
cd $LFS/sources
tar xf bash-5.1.16.tar.gz
cd bash-5.1.16
./configure --prefix=/usr \
--build=$(support/config.guess) \
--host=$LFS_TGT \
--without-bash-malloc
if [ $? -ne 0 ]
then
exit 1
fi
make -j5
if [ $? -ne 0 ]
then
exit 1
fi
make DESTDIR=$LFS install
ln -sv bash $LFS/bin/sh
cd $LFS/sources
rm -rf bash-5.1.16

View file

@ -215,3 +215,16 @@ then
stop_script "chapter6/6.3-ncurses.sh"
fi
# Chapter 6.4
# ===========
echo "Building bash"
su - lfs -c "bash $PWD/chapter6/6.4-bash.sh"
# Exit on error
check_exit_code
if [ $exit_status -ne 0 ]
then
stop_script "chapter6/6.4-bash.sh"
fi