comparison images/lfs-bootstrap/mnt/build/m4.sh @ 24:6f975a65fe1d

Fixes for uClibc 0.9.33.1.
author Rob Landley <rob@landley.net>
date Thu, 19 Apr 2012 00:10:54 -0500
parents 0bdce741ba83
children
comparison
equal deleted inserted replaced
23:73b8cbdef3b5 24:6f975a65fe1d
1 generic-check.sh 1 #!/bin/sh
2
3 sed -i 's/#ifndef __GLIBC__/#if !defined __GLIBC__ || defined __UCLIBC__/' \
4 lib/spawn.in.h || exit 1
5
6 # Standard install, plus "make check".
7
8 ./configure --prefix=/usr --bindir=/bin &&
9 make -j $CPUS || exit 1
10
11 if [ ! -z "$CHECK" ]
12 then
13 make check || exit 1
14 fi
15
16 make install