aboutsummaryrefslogtreecommitdiffstats
path: root/tools/python/Makefile
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-04-21 09:14:07 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-04-21 09:14:07 +0100
commitf9afb49240ee10fbb7cd50e7eb50ae6c7005c361 (patch)
treeefbc78c3e28eb164ef3c06a412b3cd0ff7be3f5a /tools/python/Makefile
parent10e0943c63b5fe687e1d42d5c0f2c0b8cb1a0f8b (diff)
downloadxen-f9afb49240ee10fbb7cd50e7eb50ae6c7005c361.tar.gz
xen-f9afb49240ee10fbb7cd50e7eb50ae6c7005c361.tar.bz2
xen-f9afb49240ee10fbb7cd50e7eb50ae6c7005c361.zip
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>
Diffstat (limited to 'tools/python/Makefile')
-rw-r--r--tools/python/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/python/Makefile b/tools/python/Makefile
index b3e404cb9f..e73d624414 100644
--- a/tools/python/Makefile
+++ b/tools/python/Makefile
@@ -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