From patchwork Wed Apr 24 09:20:37 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Roger_Pau_Monn=C3=A9?= X-Patchwork-Id: 10914349 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id C73321515 for ; Wed, 24 Apr 2019 09:22:53 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B7B05289B3 for ; Wed, 24 Apr 2019 09:22:53 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id AB779289B5; Wed, 24 Apr 2019 09:22:53 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 345E5289B8 for ; Wed, 24 Apr 2019 09:22:52 +0000 (UTC) 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 X-Inumbo-ID: 43bdc57d-6672-11e9-92d7-bc764e045a96 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-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 Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" X-Virus-Scanned: ClamAV using ClamSMTP 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é 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 $@ all-$(CONFIG_X86): xen/.dir - $(MAKE) -C xen/lib/x86 all XEN_ROOT=$(XEN_ROOT) + $(MAKE) -C xen/lib/x86 all XEN_ROOT=$(XEN_ROOT) PYTHON=$(PYTHON) # Not xen/xsm as that clashes with link to # $(XEN_ROOT)/xen/include/public/xsm above.