view images/lfs-bootstrap/mnt/build/tar.sh @ 40:ef471ef37665 draft default tip

Yank reliance on ash.
author Rob Landley <rob@landley.net>
date Sat, 18 Jul 2015 01:39:24 -0500
parents 0bdce741ba83
children
line wrap: on
line source

#!/bin/sh

FORCE_UNSAFE_CONFIGURE=1 ./configure --prefix=/usr --bindir=/bin \
  --libexecdir=/usr/sbin &&
make -j $CPUS || exit 1

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

make install