1
0
mirror of https://github.com/krglaws/MyLFS.git synced 2025-07-26 15:46:59 +00:00
Files
MyLFS-big_bash_script/phase4/mpfr.sh

20 lines
276 B
Bash

# MPFR Phase 4
./configure --prefix=/usr \
--disable-static \
--enable-thread-safe \
--docdir=/usr/share/doc/mpfr-4.1.0
make
make html
if $RUN_TESTS
then
set +e
make check
set -e
fi
make install
make install-html