comparison images/lfs-bootstrap/mnt/build/bison.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 6f975a65fe1d
comparison
equal deleted inserted replaced
-1:000000000000 0:bcd2e358d57f
1 #!/bin/sh
2
3 ./configure --prefix=/usr &&
4 echo '#define YYENABLE_NLS 1' >> lib/config.h &&
5 make -j $CPUS || exit 1
6
7 if [ ! -z "$CHECK" ]
8 then
9 make check || exit 1
10 fi
11
12 make install