1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

build: exit with an error if waf configure fails

We don't want configure in the build farm to show green when it fails
This commit is contained in:
Andrew Tridgell 2010-05-05 12:41:07 +02:00
parent b4c46bd7df
commit fa172c494f

View File

@ -9,6 +9,6 @@ WAF=BUILDTOOLS/bin/waf
JOBS=1
export JOBS
cd BUILDPATH
$WAF configure "$@"
cd BUILDPATH || exit 1
$WAF configure "$@" || exit 1
cd $PREVPATH