From: Pavel Roskin Date: Fri, 31 Aug 2007 03:04:49 +0000 (-0400) Subject: Use --force to overwrite python files X-Git-Tag: v0.14~104 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/09e022f5a3228abd81944f478ba4e6f1861406bd Use --force to overwrite python files Installing StGIT with "make install" is not working properly if another version is installed. Files under ~/lib/python2.5/site-packages/stgit are not updated. This causes unexpected problems if switching between different branches of StGIT. Using "--force" ensures that the files in the tree are installed even if the already installed files are newer. Signed-off-by: Pavel Roskin Signed-off-by: Karl Hasselström --- diff --git a/Makefile b/Makefile index 8671209..c890b8e 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ all: $(PYTHON) setup.py build install: - $(PYTHON) setup.py install --prefix=$(PREFIX) --root=$(DESTDIR) + $(PYTHON) setup.py install --prefix=$(PREFIX) --root=$(DESTDIR) --force doc: cd Documentation && $(MAKE) all