aboutsummaryrefslogtreecommitdiffstats
path: root/tools/python/Makefile
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-03-08 11:18:39 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-03-08 11:18:39 +0100
commita5414d898be12fbfc0e4e565ef7de2ea0bee0d42 (patch)
tree75887b5d82e3ed02e5abc77a72522adfc6249d3c /tools/python/Makefile
parentb76d31960b1103f1493f6dc9b343e7ce48239428 (diff)
downloadxen-a5414d898be12fbfc0e4e565ef7de2ea0bee0d42.tar.gz
xen-a5414d898be12fbfc0e4e565ef7de2ea0bee0d42.tar.bz2
xen-a5414d898be12fbfc0e4e565ef7de2ea0bee0d42.zip
Ensure old Python files are overwritten during tools install.
Signed-off-by: Akio Takebe <takebe_akio@jp.fujitsu.com>
Diffstat (limited to 'tools/python/Makefile')
-rw-r--r--tools/python/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/python/Makefile b/tools/python/Makefile
index ce333cab71..87d08a22e6 100644
--- a/tools/python/Makefile
+++ b/tools/python/Makefile
@@ -9,10 +9,10 @@ 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" --force
else
install: all
- CFLAGS="$(CFLAGS)" python setup.py install --root="$(DESTDIR)"
+ CFLAGS="$(CFLAGS)" python setup.py install --root="$(DESTDIR)" --force
endif
test: