aboutsummaryrefslogtreecommitdiffstats
path: root/tools/pygrub/Makefile
diff options
context:
space:
mode:
authorTim Deegan <tim.deegan@xensource.com>2006-09-21 14:56:28 +0100
committerTim Deegan <tim.deegan@xensource.com>2006-09-21 14:56:28 +0100
commitd456d49ce61f8ed238877e3eda23236ad4e9b944 (patch)
tree53d3b6f574d12c9a65b0a2c6c1abfee78b6d8bb0 /tools/pygrub/Makefile
parent795a17233451c14c6c3aac1850c5782018fa593d (diff)
downloadxen-d456d49ce61f8ed238877e3eda23236ad4e9b944.tar.gz
xen-d456d49ce61f8ed238877e3eda23236ad4e9b944.tar.bz2
xen-d456d49ce61f8ed238877e3eda23236ad4e9b944.zip
Pygrub: add /var/lib/xen to the install tree.
(Pygrub uses /var/lib/xen to store fifos and image files.) Signed-off-by: Tim Deegan <tim.deegan@xensource.com>
Diffstat (limited to 'tools/pygrub/Makefile')
-rw-r--r--tools/pygrub/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/pygrub/Makefile b/tools/pygrub/Makefile
index fab70ffc30..de240f401f 100644
--- a/tools/pygrub/Makefile
+++ b/tools/pygrub/Makefile
@@ -12,9 +12,11 @@ build:
ifndef XEN_PYTHON_NATIVE_INSTALL
install: all
CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" --prefix=""
+ $(INSTALL_DIR) -p $(DESTDIR)/var/lib/xen
else
install: all
CFLAGS="$(CFLAGS)" python setup.py install --root="$(DESTDIR)"
+ $(INSTALL_DIR) -p $(DESTDIR)/var/lib/xen
endif
.PHONY: clean