[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 463fc8a9e7376a956c433de079a65893e9486e68 # Parent 42b8bed9bae4221c33e0255b8f0802a263d6618c 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 42b8bed9bae4 -r 463fc8a9e737 tools/pygrub/Makefile --- a/tools/pygrub/Makefile Fri Apr 21 09:11:54 2006 +0100 +++ b/tools/pygrub/Makefile Fri Apr 21 09:14:47 2006 +0100 @@ -8,7 +8,7 @@ build: 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 42b8bed9bae4 -r 463fc8a9e737 tools/python/Makefile --- a/tools/python/Makefile Fri Apr 21 09:11:54 2006 +0100 +++ b/tools/python/Makefile Fri Apr 21 09:14:47 2006 +0100 @@ -9,7 +9,7 @@ build: 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 |