Commit 990452cf authored by Fred Drake's avatar Fred Drake

Shut up distutils if the Python version is less than 2.3; older

versions were much too verbose by default.
parent f721e334
...@@ -67,6 +67,8 @@ def main(): ...@@ -67,6 +67,8 @@ def main():
test_largefile() test_largefile()
if REQUIRE_ZLIB: if REQUIRE_ZLIB:
test_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 print " - Zope top-level binary directory will be %s." % PREFIX
if INSTALL_FLAGS: if INSTALL_FLAGS:
print " - Distutils install flags will be '%s'" % INSTALL_FLAGS print " - Distutils install flags will be '%s'" % INSTALL_FLAGS
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment