view sources/control-images/lfs-bootstrap/mnt/build/sed.sh @ 1288:c054a7a36cd9

Add rather a lot of Linux From Scratch 6.7 building infrastructure. Needs a bit more debugging.
author Rob Landley <rob@landley.net>
date Wed, 17 Nov 2010 22:09:19 -0600
parents a4cb2ed0a551
children
line wrap: on
line source

#!/bin/sh

./configure --prefix=/usr --bindir=/bin --htmldir=/usr/share/doc/sed &&
make -j $CPUS || exit 1

if [ ! -z "$DOCS" ]
then
  make html &&
  make -C doc install-html || exit 1
fi

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

make install