Files
MyLFS/phase4/patch.sh

15 lines
123 B
Bash

# Patch Phase 4
./configure --prefix=/usr
make
if $RUN_TESTS
then
set +e
make check
set -e
fi
make install