From: Christoph Egger Date: Tue, 31 Aug 2010 16:51:51 +0000 (+0100) Subject: libxl: run libxlgentypes with $(PYTHON) X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~11563 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=fbf24c664bc6a7a5cb675b26bbdd1f93f73f519a;p=xen.git libxl: run libxlgentypes with $(PYTHON) Attached patch fixes libxl build that broke in changeset 22032:fa82b0540e8c. It is common these days to use $(PYTHON) in the build system. Signed-off-by: Christoph Egger Acked-by: Ian Campbell Signed-off-by: Ian Jackson --- diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile index 04fd9f335e..ab8df5dfbb 100644 --- a/tools/libxl/Makefile +++ b/tools/libxl/Makefile @@ -66,7 +66,7 @@ libxl.h: _libxl_types.h $(LIBXL_OBJS:%.o=%.c) $(LIBXLU_OBJS:%.o=%.c) $(XL_OBJS:%.o=%.c): libxl.h _libxl_types.h _libxl_types.c: libxl.idl gentypes.py libxltypes.py - python gentypes.py libxl.idl __libxl_types.h __libxl_types.c + $(PYTHON) gentypes.py libxl.idl __libxl_types.h __libxl_types.c mv __libxl_types.h _libxl_types.h mv __libxl_types.c _libxl_types.c