1
0
mirror of https://github.com/krglaws/MyLFS.git synced 2026-01-31 07:56:46 +00:00
Files
MyLFS-big_bash_script/phase4/make.sh
2026-01-07 11:52:39 -08:00

16 lines
170 B
Bash

# Make Phase 4
./configure --prefix=/usr
make
if $RUN_TESTS
then
set +e
chown -R tester .
su tester -c "PATH=$PATH make check"
set -e
fi
make install