From: Fam Zheng Date: Wed, 21 Sep 2016 03:49:24 +0000 (+0800) Subject: docker: Flatten default target list in test-quick X-Git-Tag: v2.8.0-rc0~121^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3d3a6eb60d259a503ed771c878f777e2715d83db;p=thirdparty%2Fqemu.git docker: Flatten default target list in test-quick Previously it is expanded to a whitespace separated list which is not the most appropriate format. Since it's only two items, flatten it. Signed-off-by: Fam Zheng Message-Id: <1474429768-25027-6-git-send-email-famz@redhat.com> Reviewed-by: Daniel P. Berrange --- diff --git a/tests/docker/test-quick b/tests/docker/test-quick index 07cdc59a106..7885dfafdbe 100755 --- a/tests/docker/test-quick +++ b/tests/docker/test-quick @@ -13,7 +13,7 @@ . common.rc -DEF_TARGET_LIST="$(echo {x86_64,aarch64}-softmmu)" +DEF_TARGET_LIST="x86_64-softmmu,aarch64-softmmu" TARGET_LIST=${TARGET_LIST:-$DEF_TARGET_LIST} \ build_qemu make check $MAKEFLAGS