From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Subject: [kvm-unit-tests PATCH v4 2/3] configure: emit HOST=$host to config.mak Date: Wed, 22 Jul 2015 18:49:55 +0100 Message-ID: <1437587396-4568-3-git-send-email-alex.bennee@linaro.org> References: <1437587396-4568-1-git-send-email-alex.bennee@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: drjones@redhat.com, =?UTF-8?q?Alex=20Benn=C3=A9e?= To: kvm@vger.kernel.org Return-path: Received: from mail-wi0-f169.google.com ([209.85.212.169]:37693 "EHLO mail-wi0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756701AbbGVRuD (ORCPT ); Wed, 22 Jul 2015 13:50:03 -0400 Received: by wibud3 with SMTP id ud3so183809836wib.0 for ; Wed, 22 Jul 2015 10:50:02 -0700 (PDT) In-Reply-To: <1437587396-4568-1-git-send-email-alex.bennee@linaro.org> Sender: kvm-owner@vger.kernel.org List-ID: This is useful information for the run scripts to know, especially if they want to drop to using TCG. Signed-off-by: Alex Benn=C3=A9e Reviewed-by: Andrew Jones --- v3 - add r-b tag --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index b2ad32a..078b70c 100755 --- a/configure +++ b/configure @@ -7,6 +7,7 @@ ld=3Dld objcopy=3Dobjcopy ar=3Dar arch=3D`uname -m | sed -e s/i.86/i386/ | sed -e 's/arm.*/arm/'` +host=3D$arch cross_prefix=3D =20 usage() { @@ -122,6 +123,7 @@ ln -s $asm lib/asm cat < config.mak PREFIX=3D$prefix KERNELDIR=3D$(readlink -f $kerneldir) +HOST=3D$host ARCH=3D$arch ARCH_NAME=3D$arch_name PROCESSOR=3D$processor --=20 2.4.5