From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41778) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1br6AE-0006Zz-Ia for qemu-devel@nongnu.org; Mon, 03 Oct 2016 12:32:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1br6AB-0002xa-2K for qemu-devel@nongnu.org; Mon, 03 Oct 2016 12:32:25 -0400 Received: from mail-wm0-x22b.google.com ([2a00:1450:400c:c09::22b]:35677) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1br6AA-0002xI-SB for qemu-devel@nongnu.org; Mon, 03 Oct 2016 12:32:23 -0400 Received: by mail-wm0-x22b.google.com with SMTP id f193so117344757wmg.0 for ; Mon, 03 Oct 2016 09:32:22 -0700 (PDT) From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Mon, 3 Oct 2016 17:32:11 +0100 Message-Id: <20161003163212.8101-4-alex.bennee@linaro.org> In-Reply-To: <20161003163212.8101-1-alex.bennee@linaro.org> References: <20161003163212.8101-1-alex.bennee@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v2 3/4] tests/docker: make test-mingw honour TARGET_LIST List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: famz@redhat.com Cc: qemu-devel@nongnu.org, =?UTF-8?q?Alex=20Benn=C3=A9e?= The other builders honour this variable, so should the mingw build. Signed-off-by: Alex Bennée --- tests/docker/test-mingw | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/docker/test-mingw b/tests/docker/test-mingw index c03757a..51e9c0b 100755 --- a/tests/docker/test-mingw +++ b/tests/docker/test-mingw @@ -15,8 +15,10 @@ requires mingw dtc +DEF_TARGET_LIST="x86_64-softmmu,aarch64-softmmu" + for prefix in x86_64-w64-mingw32- i686-w64-mingw32-; do - TARGET_LIST=x86_64-softmmu,aarch64-softmmu \ + TARGET_LIST=${TARGET_LIST:-$DEF_TARGET_LIST} \ build_qemu --cross-prefix=$prefix \ --enable-trace-backends=simple \ --enable-debug \ -- 2.9.3