From: Fam Zheng Date: Tue, 5 Sep 2017 02:56:09 +0000 (+0800) Subject: docker: Fix return code of build_qemu() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d8a2f5116dd41c2262efcd83ba9756d5953d9318;p=qemu.git docker: Fix return code of build_qemu() Without "set -e", the "&&" makes sure that the return code reflects the result status, and that make only runs if configure succeeds. Signed-off-by: Fam Zheng Message-Id: <20170905025614.579-2-famz@redhat.com> Reviewed-by: Stefan Hajnoczi Based-on: 20170905021201.25684-1-famz@redhat.com --- diff --git a/tests/docker/common.rc b/tests/docker/common.rc index 64b36ba2d0..3b45eb91c6 100755 --- a/tests/docker/common.rc +++ b/tests/docker/common.rc @@ -30,6 +30,5 @@ build_qemu() $@" echo "Configure options:" echo $config_opts - $QEMU_SRC/configure $config_opts - make $MAKEFLAGS + $QEMU_SRC/configure $config_opts && make $MAKEFLAGS }