1
0
mirror of https://github.com/krglaws/MyLFS.git synced 2025-07-29 21:01:54 +00:00
Files
MyLFS-big_bash_script/phase4/bash.sh

26 lines
408 B
Bash

# Bash Phase 4
./configure --prefix=/usr \
--docdir=/usr/share/doc/bash-5.1.16 \
--without-bash-malloc \
--with-installed-readline
make
chown -R tester .
if $RUN_TESTS
then
set +e
su -s /usr/bin/expect tester << EOF
set timeout -1
spawn make tests
expect eof
lassign [wait] _ _ _ value
exit $value
EOF
set -e
fi
make install