Akio Takebe
2006-Mar-07 10:35 UTC
[Xen-devel] [Patch] Install python tools with --force option
Hi, When I reinstall tools, new tools/python are not installed. This is cause by being overwriten at "python setup.py install". Please check your /usr/lib/python is changed to new one. I think tools/python should be installed with "--force" option at reinstalling. Otherwise should we use "make uninstall" at reinstalling? Signed-off-by: Akio Takebe <takebe_akio@jp.fujitsu.com> diff -r d60392d5b818 tools/python/Makefile --- a/tools/python/Makefile Mon Mar 6 19:29:39 2006 +++ b/tools/python/Makefile Tue Mar 7 19:28:32 2006 @@ -9,10 +9,10 @@ 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: Best Regards, Akio Takebe _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel