ia64/xen-unstable
changeset 9801:376d51321a3a
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@us.ibm.com>
passed along for some reason, so we explicitly redefine it
to nothing.
Signed-off-by: Ryan Grimm <grimm@us.ibm.com>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Fri Apr 21 09:14:07 2006 +0100 (2006-04-21) |
parents | 7e72a5f6f886 |
children | 72adf2025a93 |
files | tools/pygrub/Makefile tools/python/Makefile |
line diff
1.1 --- a/tools/pygrub/Makefile Fri Apr 21 09:11:13 2006 +0100 1.2 +++ b/tools/pygrub/Makefile Fri Apr 21 09:14:07 2006 +0100 1.3 @@ -11,7 +11,7 @@ build: 1.4 .PHONY: install 1.5 ifndef XEN_PYTHON_NATIVE_INSTALL 1.6 install: all 1.7 - CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" 1.8 + CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" --prefix="" 1.9 else 1.10 install: all 1.11 CFLAGS="$(CFLAGS)" python setup.py install --root="$(DESTDIR)"
2.1 --- a/tools/python/Makefile Fri Apr 21 09:11:13 2006 +0100 2.2 +++ b/tools/python/Makefile Fri Apr 21 09:14:07 2006 +0100 2.3 @@ -11,7 +11,7 @@ build: 2.4 .PHONY: install 2.5 ifndef XEN_PYTHON_NATIVE_INSTALL 2.6 install: all 2.7 - CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" --force 2.8 + CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" --prefix="" --force 2.9 else 2.10 install: all 2.11 CFLAGS="$(CFLAGS)" python setup.py install --root="$(DESTDIR)" --force