[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] Fix python installation on sles10. Install prefix is being
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # Node ID 376d51321a3adce521e3646ac2703987c8a13f09 # Parent 7e72a5f6f88677ac515d02f4fb0161bc47b2a9f8 Fix python installation on sles10. Install prefix is being passed along for some reason, so we explicitly redefine it to nothing. Signed-off-by: Ryan Grimm <grimm@xxxxxxxxxx> diff -r 7e72a5f6f886 -r 376d51321a3a tools/pygrub/Makefile --- a/tools/pygrub/Makefile Fri Apr 21 09:11:13 2006 +0100 +++ b/tools/pygrub/Makefile Fri Apr 21 09:14:07 2006 +0100 @@ -11,7 +11,7 @@ build: .PHONY: install ifndef XEN_PYTHON_NATIVE_INSTALL install: all - CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" + CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" --prefix="" else install: all CFLAGS="$(CFLAGS)" python setup.py install --root="$(DESTDIR)" diff -r 7e72a5f6f886 -r 376d51321a3a tools/python/Makefile --- a/tools/python/Makefile Fri Apr 21 09:11:13 2006 +0100 +++ b/tools/python/Makefile Fri Apr 21 09:14:07 2006 +0100 @@ -11,7 +11,7 @@ build: .PHONY: install ifndef XEN_PYTHON_NATIVE_INSTALL install: all - CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" --force + CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" --prefix="" --force else install: all CFLAGS="$(CFLAGS)" python setup.py install --root="$(DESTDIR)" --force _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |