From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoph Egger Subject: [PATCH][TOOLS] Use $(PYTHON) instead of python Date: Thu, 9 Jul 2009 16:33:10 +0200 Message-ID: <200907091633.10310.Christoph.Egger@amd.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Boundary-00=_m+fVKuuTbXP1ZRY" Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org --Boundary-00=_m+fVKuuTbXP1ZRY Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi! Attached patch uses $(PYTHON) instead of python for the xen-foreign headers. Signed-off-by: Christoph Egger -- ---to satisfy European Law for business letters: Advanced Micro Devices GmbH Karl-Hammerschmidt-Str. 34, 85609 Dornach b. Muenchen Geschaeftsfuehrer: Thomas M. McCoy, Giuliano Meroni Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen Registergericht Muenchen, HRB Nr. 43632 --Boundary-00=_m+fVKuuTbXP1ZRY Content-Type: text/x-diff; charset="us-ascii"; name="xen_include_python.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="xen_include_python.diff" diff -r 4b6e4bb7b7b4 tools/include/xen-foreign/Makefile --- a/tools/include/xen-foreign/Makefile Thu Jul 09 08:52:31 2009 +0100 +++ b/tools/include/xen-foreign/Makefile Thu Jul 09 16:31:36 2009 +0200 @@ -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) --Boundary-00=_m+fVKuuTbXP1ZRY Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel --Boundary-00=_m+fVKuuTbXP1ZRY--