From 75577f42e0d4fafa3851880aaecf902df486d971 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 9 Jul 2009 16:06:52 +0100 Subject: tools: python -> $(PYTHON) Signed-off-by: Christoph Egger --- tools/include/xen-foreign/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tools/include') 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) -- cgit v1.2.3