[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[minion-cvs] make install" now overwrites more "recent" versions.



Update of /home/minion/cvsroot/src/minion
In directory moria.mit.edu:/tmp/cvs-serv373

Modified Files:
	Makefile 
Log Message:
"make install" now overwrites more 'recent' versions.


Index: Makefile
===================================================================
RCS file: /home/minion/cvsroot/src/minion/Makefile,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- Makefile	5 May 2003 00:22:54 -0000	1.41
+++ Makefile	25 May 2003 20:55:29 -0000	1.42
@@ -89,13 +89,13 @@
 install: do_build
 	@$(FINDPYTHON); \
 	if [ 'x' = "x$(PREFIX)" ] ; then                                     \
-	  echo $$PYTHON setup.py install --compile --optimize=1;             \
-	  $$PYTHON setup.py install --compile --optimize=1;                  \
+	  echo $$PYTHON setup.py install --compile --optimize=1 --force;     \
+	  $$PYTHON setup.py install --compile --optimize=1 --force;          \
 	else                                                                 \
 	  PREFIX=$(PREFIX);                                                  \
 	  export PREFIX;                                                     \
-	  echo $$PYTHON setup.py install --prefix=$(PREFIX) --compile --optimize=1; \
-	  $$PYTHON setup.py install --prefix=$(PREFIX) --compile --optimize=1;\
+	  echo $$PYTHON setup.py install --prefix=$(PREFIX) --compile --optimize=1 --force; \
+	  $$PYTHON setup.py install --prefix=$(PREFIX) --compile --optimize=1 --force;\
 	fi
 
 #	  echo "MIXMINION SAYS: Please ignore the warning about sys.path:"