From: Roger Pau Monne Date: Wed, 24 Apr 2019 09:20:37 +0000 (+0200) Subject: tools/include: propagate python interpreter path X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~2268 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=31d72a0fd4773e8df77b4c46eec5c65b3cd265e0;p=xen.git tools/include: propagate python interpreter path 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 --- 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.