aboutsummaryrefslogtreecommitdiffstats
path: root/tools/pygrub/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/pygrub/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/pygrub/Makefile')
-rw-r--r--tools/pygrub/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pygrub/Makefile b/tools/pygrub/Makefile
index 75bf46bc83..fab70ffc30 100644
--- a/tools/pygrub/Makefile
+++ b/tools/pygrub/Makefile
@@ -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)"