view images/lfs-bootstrap/mnt/build/m4.sh @ 0:bcd2e358d57f

Start by copying the existing control image building infrastructure from Aboriginal Linux, and shuffling the layout around a bit.
author Rob Landley <rob@landley.net>
date Sun, 03 Jul 2011 17:23:26 -0500
parents
children 0bdce741ba83
line wrap: on
line source

#!/bin/sh

sed -i -e '/"m4.h"/a#include <sys/stat.h>' src/path.c &&
./configure --prefix=/usr &&
make || exit 1

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

make install