mirror of
https://github.com/krglaws/MyLFS.git
synced 2025-07-23 04:49:06 +00:00
15 lines
146 B
Bash
15 lines
146 B
Bash
# Autoconf Phase 4
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
|
|
if $RUN_TESTS
|
|
then
|
|
set +e
|
|
make check TESTSUITEFLAGS=-j4
|
|
set -e
|
|
fi
|
|
|
|
make install
|
|
|