scripts: stop build test after first error

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
This commit is contained in:
Thomas Monjalon 2016-03-08 16:43:50 +01:00
parent 8067621d1f
commit 1335dcf780

View File

@ -64,6 +64,7 @@ print_help () {
J=$DPDK_MAKE_JOBS
short=false
maxerr=-Wfatal-errors
while getopts hj:s ARG ; do
case $ARG in
j ) J=$OPTARG ;;
@ -146,7 +147,7 @@ for conf in $configs ; do
config $dir $target $options
echo "================== Build $dir"
make -j$J EXTRA_CFLAGS="$DPDK_DEP_CFLAGS" \
make -j$J EXTRA_CFLAGS="$maxerr $DPDK_DEP_CFLAGS" \
EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" O=$dir
! $short || break
echo "================== Build examples for $dir"