mirror of
https://github.com/krglaws/MyLFS.git
synced 2025-07-26 15:46:59 +00:00
26 lines
408 B
Bash
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
|
|
|
|
|
|
if $RUN_TESTS
|
|
then
|
|
set +e
|
|
chown -R tester .
|
|
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
|
|
|