Break out on failure

This commit is contained in:
Kevin Lange 2012-05-17 12:18:16 -04:00
parent e9e4d89ac8
commit 5fe2fdcfe8

View File

@ -7,34 +7,39 @@ INFO=$DIR/../util/mk-info
. $DIR/config.sh
function bail () {
echo -e "\033[1;31mBuild failed. Please check the logs above to see what went wrong.\033[0m"
exit 1
}
pushd build
if [ ! -d binutils ]; then
mkdir binutils
fi
pushd binutils
$DIR/tarballs/binutils-2.22/configure --target=$TARGET --prefix=$PREFIX
make
make install
$DIR/tarballs/binutils-2.22/configure --target=$TARGET --prefix=$PREFIX || bail
make || bail
make install || bail
popd
export PATH=$PATH:$PREFIX/bin
if [ ! -d gcc ]; then
mkdir gcc
fi
pushd gcc
$DIR/tarballs/gcc-4.6.0/configure --target=$TARGET --prefix=$PREFIX --disable-nls --enable-languages=c
make all-gcc
make install-gcc
make all-target-libgcc
make install-target-libgcc
$DIR/tarballs/gcc-4.6.0/configure --target=$TARGET --prefix=$PREFIX --disable-nls --enable-languages=c || bail
make all-gcc || bail
make install-gcc || bail
make all-target-libgcc || bail
make install-target-libgcc || bail
popd
if [ ! -d newlib ]; then
mkdir newlib
fi
pushd $DIR/tarballs/newlib-1.19.0/newlib/libc/sys
autoconf
autoconf || bail
pushd toaru
autoreconf
yasm -f elf -o crt0.o crt0.s
autoreconf || bail
yasm -f elf -o crt0.o crt0.s || bail
cp crt0.o ../
cp crt0.o /tmp/__toaru_crt0.o
popd
@ -43,17 +48,17 @@ pushd build
mkdir -p $TARGET/newlib/libc/sys
cp /tmp/__toaru_crt0.o $TARGET/newlib/libc/sys/crt0.o
rm /tmp/__toaru_crt0.o
$DIR/tarballs/newlib-1.19.0/configure --target=$TARGET --prefix=$PREFIX
make
make install
$DIR/tarballs/newlib-1.19.0/configure --target=$TARGET --prefix=$PREFIX || bail
make || bail
make install || bail
cp $DIR/patches/newlib/syscall.h $PREFIX/$TARGET/include/
popd
if [ ! -d freetype ]; then
mkdir freetype
fi
pushd freetype
$DIR/tarballs/freetype-2.4.9/configure --host=$TARGET --prefix=$PREFIX/$TARGET
make
make install
$DIR/tarballs/freetype-2.4.9/configure --host=$TARGET --prefix=$PREFIX/$TARGET || bail
make || bail
make install || bail
popd
popd