comparison sources/control-images/lfs-bootstrap/mnt/build/pkg-config.sh @ 1275:a4cb2ed0a551

Move sources/native-builds to sources/control-images, so the naming is consistent.
author Rob Landley <rob@landley.net>
date Sun, 07 Nov 2010 15:55:26 -0600
parents sources/native-builds/lfs-bootstrap/mnt/build/pkg-config.sh@7a60afa1846c
children
comparison
equal deleted inserted replaced
1274:b41dbea3ba14 1275:a4cb2ed0a551
1 #!/bin/sh
2
3 sed -i -e 's/XT])dnl/XT])[]dnl/' \
4 -e 's/\.])dnl/\.])[]dnl/' pkg.m4 &&
5 ./configure --prefix=/usr &&
6 make -j $CPUS || exit 1
7
8 if [ ! -z "$CHECK" ]
9 then
10 make check || exit 1
11 fi
12
13 make install