[Zope-Checkins] CVS: Zope - setup.py:1.30

Chris McDonough chrism@zope.com
Fri, 13 Jun 2003 02:27:49 -0400


Update of /cvs-repository/Zope
In directory cvs.zope.org:/tmp/cvs-serv10536

Modified Files:
	setup.py 
Log Message:
Make 'make inplace' target run 'make install' instead of performing
a setup.py build_ext -i in order to prevent needing to needlessly rebuild
C extensions after a straight 'make' is performed.

Cleaned up makefile and added comments.

Also, moved mkzopeinstance and mkzeoinstance into 'utilities'.  It makes
more sense for 'bin' to be disposable in the face of inplace builds.


=== Zope/setup.py 1.29 => 1.30 ===
--- Zope/setup.py:1.29	Wed May 28 01:45:25 2003
+++ Zope/setup.py	Fri Jun 13 02:27:18 2003
@@ -1092,7 +1092,7 @@
     author=AUTHOR,
 
     data_files=installed_data_files,
-    scripts=["bin/mkzeoinstance", "bin/mkzopeinstance"],
+    scripts=["utilities/mkzeoinstance", "utilities/mkzopeinstance"],
     distclass=ZopeDistribution,
     )