From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37549) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b9vo9-0007lh-I1 for qemu-devel@nongnu.org; Mon, 06 Jun 2016 10:47:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b9vnz-0000Ao-Ho for qemu-devel@nongnu.org; Mon, 06 Jun 2016 10:47:12 -0400 Received: from mail-wm0-x242.google.com ([2a00:1450:400c:c09::242]:34901) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b9vnz-0000Ah-B0 for qemu-devel@nongnu.org; Mon, 06 Jun 2016 10:47:03 -0400 Received: by mail-wm0-x242.google.com with SMTP id k184so10686726wme.2 for ; Mon, 06 Jun 2016 07:47:03 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Mon, 6 Jun 2016 16:46:53 +0200 Message-Id: <1465224417-141321-3-git-send-email-pbonzini@redhat.com> In-Reply-To: <1465224417-141321-1-git-send-email-pbonzini@redhat.com> References: <1465224417-141321-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 2/6] tests/docker: make test-full build all targets, not none List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: famz@redhat.com Fix common.rc to avoid passing an empty --target-list= option to configure. Signed-off-by: Paolo Bonzini --- tests/docker/common.rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/docker/common.rc b/tests/docker/common.rc index c493eeb..77069e1 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 \ "$@" -- 1.8.3.1