minor bugfix: stop executing the script when an error is found
This commit is contained in:
parent
8d8b3b9d64
commit
711412e1e6
1 changed files with 3 additions and 3 deletions
|
@ -98,15 +98,15 @@ fi
|
||||||
# Create the configure script
|
# Create the configure script
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
rm -rf $tmpdir/configure
|
rm -rf $tmpdir/configure
|
||||||
$bindir/autogen.sh
|
$bindir/autogen.sh || exit 1
|
||||||
$basedir/configure --prefix=$usrdir --with-www-docroot=$usrdir/var \
|
$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
|
# Compile everything at once, including the tools
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
make -C $basedir all
|
make -C $basedir all || exit 1
|
||||||
|
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue