[Zope-Checkins] CVS: Zope/inst - configure.py:1.5

Fred L. Drake, Jr. fred@zope.com
Wed, 26 Mar 2003 17:00:59 -0500


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

Modified Files:
	configure.py 
Log Message:
Shut up distutils if the Python version is less than 2.3; older
versions were much too verbose by default.


=== Zope/inst/configure.py 1.4 => 1.5 ===
--- Zope/inst/configure.py:1.4	Sat Mar 22 12:02:12 2003
+++ Zope/inst/configure.py	Wed Mar 26 17:00:59 2003
@@ -67,6 +67,8 @@
         test_largefile()
     if REQUIRE_ZLIB:
         test_zlib()
+    if sys.version < "2.3" and not DISTUTILS_OPTS:
+        DISTUTILS_OPTS = '-q'
     print "  - Zope top-level binary directory will be %s." % PREFIX
     if INSTALL_FLAGS:
         print "  - Distutils install flags will be '%s'" % INSTALL_FLAGS