mirror of
https://github.com/krglaws/MyLFS.git
synced 2025-07-26 15:46:59 +00:00
18 lines
207 B
Bash
18 lines
207 B
Bash
# Tar Phase 4
|
|
FORCE_UNSAFE_CONFIGURE=1 \
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
|
|
if $RUN_TESTS
|
|
then
|
|
set +e
|
|
make check
|
|
set -e
|
|
fi
|
|
|
|
make install
|
|
|
|
make -C doc install-html docdir=/usr/share/doc/tar-1.34
|
|
|