From: Fam Zheng Date: Wed, 21 Sep 2016 03:49:25 +0000 (+0800) Subject: docker: Print used options before doing configure X-Git-Tag: TizenStudio_2.0_p2.3.2~9^2~14^2~5^2~170^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9445c28ec3753470554790debc6ac12609c3b733;p=sdk%2Femulator%2Fqemu.git docker: Print used options before doing configure This makes the configure command more obvious which usually has useful information. Signed-off-by: Fam Zheng Message-Id: <1474429768-25027-7-git-send-email-famz@redhat.com> Reviewed-by: Daniel P. Berrange --- diff --git a/tests/docker/common.rc b/tests/docker/common.rc index 0c6d8d5..510a3ad 100755 --- a/tests/docker/common.rc +++ b/tests/docker/common.rc @@ -23,11 +23,13 @@ requires() build_qemu() { - $QEMU_SRC/configure \ - --enable-werror \ - ${TARGET_LIST:+"--target-list=${TARGET_LIST}"} \ - --prefix="$PWD/install" \ - $EXTRA_CONFIGURE_OPTS \ - "$@" + config_opts="--enable-werror \ + ${TARGET_LIST:+--target-list=${TARGET_LIST}} \ + --prefix=$PWD/install \ + $EXTRA_CONFIGURE_OPTS \ + $@" + echo "Configure options:" + echo $config_opts + $QEMU_SRC/configure $config_opts make $MAKEFLAGS }