From: Paolo Bonzini Date: Mon, 6 Jun 2016 14:46:53 +0000 (+0200) Subject: tests/docker: make test-full build all targets, not none X-Git-Tag: v2.7.0-rc0~139^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=53735f0b823d655f8e29e43d4ed6080970c87019;p=thirdparty%2Fqemu.git tests/docker: make test-full build all targets, not none Fix common.rc to avoid passing an empty --target-list= option to configure. Signed-off-by: Paolo Bonzini Message-id: 1465224417-141321-3-git-send-email-pbonzini@redhat.com Signed-off-by: Fam Zheng --- diff --git a/tests/docker/common.rc b/tests/docker/common.rc index c493eebd453..77069e12856 100755 --- a/tests/docker/common.rc +++ b/tests/docker/common.rc @@ -24,7 +24,7 @@ requires() build_qemu() { $QEMU_SRC/configure \ - --target-list="${TARGET_LIST}" \ + ${TARGET_LIST:+"--target-list=${TARGET_LIST}"} \ --prefix="$PWD/install" \ $EXTRA_CONFIGURE_OPTS \ "$@"