aboutsummaryrefslogtreecommitdiffstats
path: root/tools/include
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-07-09 16:06:52 +0100
committerKeir Fraser <keir.fraser@citrix.com>2009-07-09 16:06:52 +0100
commit75577f42e0d4fafa3851880aaecf902df486d971 (patch)
treeea49ce328069800af3b416e12ae43babd7c14827 /tools/include
parentb4f3b1640ad968c663c40ebafc1560db03c07ce2 (diff)
downloadxen-75577f42e0d4fafa3851880aaecf902df486d971.tar.gz
xen-75577f42e0d4fafa3851880aaecf902df486d971.tar.bz2
xen-75577f42e0d4fafa3851880aaecf902df486d971.zip
tools: python -> $(PYTHON)
Signed-off-by: Christoph Egger <Christoph.Egger@amd.com>
Diffstat (limited to 'tools/include')
-rw-r--r--tools/include/xen-foreign/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/include/xen-foreign/Makefile b/tools/include/xen-foreign/Makefile
index f770cf4de5..77a535f4d0 100644
--- a/tools/include/xen-foreign/Makefile
+++ b/tools/include/xen-foreign/Makefile
@@ -23,13 +23,13 @@ check-headers: checker
rm tmp.size
x86_32.h: mkheader.py structs.py $(ROOT)/arch-x86/xen-x86_32.h $(ROOT)/arch-x86/xen.h $(ROOT)/xen.h
- python $< $* $@ $(filter %.h,$^)
+ $(PYTHON) $< $* $@ $(filter %.h,$^)
x86_64.h: mkheader.py structs.py $(ROOT)/arch-x86/xen-x86_64.h $(ROOT)/arch-x86/xen.h $(ROOT)/xen.h
- python $< $* $@ $(filter %.h,$^)
+ $(PYTHON) $< $* $@ $(filter %.h,$^)
ia64.h: mkheader.py structs.py $(ROOT)/arch-ia64.h $(ROOT)/xen.h
- python $< $* $@ $(filter %.h,$^)
+ $(PYTHON) $< $* $@ $(filter %.h,$^)
checker.c: mkchecker.py structs.py
- python $< $@ $(architectures)
+ $(PYTHON) $< $@ $(architectures)