view images/lfs-bootstrap/mnt/build/mpfr.sh @ 16:0bdce741ba83

Upgrade lfs-bootstrap from 6.7 to Linux From Scratch 6.8.
author Rob Landley <rob@landley.net>
date Sun, 30 Oct 2011 17:58:45 -0500
parents bcd2e358d57f
children
line wrap: on
line source

#!/bin/sh

# TODO: The --enable-thread-safe here requires TLS

./configure --prefix=/usr --docdir=/usr/share/doc/mpfr-3.0.0 &&
make -j $CPUS || exit 1

if [ ! -z "$CHECK" ]
then
  make check || exit 1
fi

make install || exit 1

if [ ! -z "$DOCS" ]
then
  make html &&
  make install-html
fi