[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] Use $CC when building pygrub.
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxxx # Node ID 56f8bf333ef324936d78f8147eecf4d780279783 # Parent f575d675cda4b150f937bce4fd1647ace5e83324 Use $CC when building pygrub. Signed-off-by: John Levon <john.levon@xxxxxxx> --- tools/pygrub/Makefile | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff -r f575d675cda4 -r 56f8bf333ef3 tools/pygrub/Makefile --- a/tools/pygrub/Makefile Sun Oct 22 17:34:24 2006 +0100 +++ b/tools/pygrub/Makefile Sun Oct 22 17:36:28 2006 +0100 @@ -6,16 +6,16 @@ all: build all: build .PHONY: build build: - CFLAGS="$(CFLAGS)" python setup.py build + CC="$(CC)" CFLAGS="$(CFLAGS)" python setup.py build .PHONY: install ifndef XEN_PYTHON_NATIVE_INSTALL install: all - CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" --prefix="" + CC="$(CC)" CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" --prefix="" $(INSTALL_DIR) -p $(DESTDIR)/var/lib/xen else install: all - CFLAGS="$(CFLAGS)" python setup.py install --root="$(DESTDIR)" + CC="$(CC)" CFLAGS="$(CFLAGS)" python setup.py install --root="$(DESTDIR)" $(INSTALL_DIR) -p $(DESTDIR)/var/lib/xen endif _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |