From 09e022f5a3228abd81944f478ba4e6f1861406bd Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Thu, 30 Aug 2007 23:04:49 -0400 Subject: [PATCH] Use --force to overwrite python files MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 86712094..c890b8ed 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 -- 2.11.4.GIT