minor bugfix: stop executing the script when an error is found

This commit is contained in:
fgerlits 2006-08-21 10:37:36 +00:00
parent 8d8b3b9d64
commit 711412e1e6
1 changed files with 3 additions and 3 deletions

View File

@ -98,15 +98,15 @@ fi
# Create the configure script
#-------------------------------------------------------------------------------
rm -rf $tmpdir/configure
$bindir/autogen.sh
$bindir/autogen.sh || exit 1
$basedir/configure --prefix=$usrdir --with-www-docroot=$usrdir/var \
--with-apache-group=$apache_group
--with-apache-group=$apache_group || exit 1
#-------------------------------------------------------------------------------
# Compile everything at once, including the tools
#-------------------------------------------------------------------------------
make -C $basedir all
make -C $basedir all || exit 1
#-------------------------------------------------------------------------------