From nobody Wed May 1 22:39:14 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org ARC-Seal: i=1; a=rsa-sha256; t=1556097759; cv=none; d=zoho.com; s=zohoarc; b=iU4b7kwm+V0VoTB2NLKi2XNggcHfyANAIYmTLqUyMD6O6bJ9+Vz6QTUcHAnHDAiOxhoEfR2fhm0LZ/Mg/zwvbZU5VRqQ4NNtDuYchbENfdrzx3a0RFyLaj0W5Fz3qQ8SjYB3HU0tOvgwQ6IPsSjbrgKUvTKnAsKbH0Icc5RfVH8= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1556097759; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=5fkPG9L1V3dA4wlPXHNu6SUDsiDkhRpPYzjc59SHlbU=; b=nX4aUseOumkgR5Yyyytpb1bfZPuDsH1bBtHxdsNp1c3LAec7GOYeEhv73mgKdq1OAdws9+0S36qt4GEtTAjpi3w3xZpFR6cL1TnP7FBYctOWAReQo5LAj2SVLzZHZYUAdRO3BDcqopmYR+W4XyBwc3Uol01BuGPGxjgzsu4SCmI= ARC-Authentication-Results: i=1; mx.zoho.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1556097759827263.65994802256216; Wed, 24 Apr 2019 02:22:39 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hJE5L-0004B3-C7; Wed, 24 Apr 2019 09:20:59 +0000 Received: from us1-rack-dfw2.inumbo.com ([104.130.134.6]) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hJE5K-0004Ax-0z for xen-devel@lists.xenproject.org; Wed, 24 Apr 2019 09:20:58 +0000 Received: from SMTP03.CITRIX.COM (unknown [162.221.156.55]) by us1-rack-dfw2.inumbo.com (Halon) with ESMTPS id 43bdc57d-6672-11e9-92d7-bc764e045a96; Wed, 24 Apr 2019 09:20:56 +0000 (UTC) X-Inumbo-ID: 43bdc57d-6672-11e9-92d7-bc764e045a96 X-IronPort-AV: E=Sophos;i="5.60,389,1549929600"; d="scan'208";a="84274778" From: Roger Pau Monne To: Date: Wed, 24 Apr 2019 11:20:37 +0200 Message-ID: <20190424092037.72003-1-roger.pau@citrix.com> X-Mailer: git-send-email 2.17.2 (Apple Git-113) MIME-Version: 1.0 Subject: [Xen-devel] [PATCH] tools/include: propagate python interpreter path X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Wei Liu , Ian Jackson , Roger Pau Monne Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" To the Makefile that generates the cpuid policy. Without this fix if the tools python interpreter is different than the default 'python' it won't be correctly propagated. Signed-off-by: Roger Pau Monn=C3=A9 Acked-by: Wei Liu --- Cc: Ian Jackson Cc: Wei Liu --- tools/include/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/include/Makefile b/tools/include/Makefile index d693810053..71538e1ce2 100644 --- a/tools/include/Makefile +++ b/tools/include/Makefile @@ -32,7 +32,7 @@ endif touch $@ =20 all-$(CONFIG_X86): xen/.dir - $(MAKE) -C xen/lib/x86 all XEN_ROOT=3D$(XEN_ROOT) + $(MAKE) -C xen/lib/x86 all XEN_ROOT=3D$(XEN_ROOT) PYTHON=3D$(PYTHON) =20 # Not xen/xsm as that clashes with link to # $(XEN_ROOT)/xen/include/public/xsm above. --=20 2.17.2 (Apple Git-113) _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel