[Python-checkins] r63799 - python/trunk/setup.py

brett.cannon python-checkins at python.org
Thu May 29 23:23:33 CEST 2008


Author: brett.cannon
Date: Thu May 29 23:23:33 2008
New Revision: 63799

Log:
Turn off debugging output for building bsddb.

Modified:
   python/trunk/setup.py

Modified: python/trunk/setup.py
==============================================================================
--- python/trunk/setup.py	(original)
+++ python/trunk/setup.py	Thu May 29 23:23:33 2008
@@ -842,8 +842,9 @@
                         if db_setup_debug: print "db lib: ", dblib, "not found"
 
         except db_found:
-            print "bsddb using BerkeleyDB lib:", db_ver, dblib
-            print "bsddb lib dir:", dblib_dir, " inc dir:", db_incdir
+            if db_setup_debug:
+                print "bsddb using BerkeleyDB lib:", db_ver, dblib
+                print "bsddb lib dir:", dblib_dir, " inc dir:", db_incdir
             db_incs = [db_incdir]
             dblibs = [dblib]
             # We add the runtime_library_dirs argument because the


More information about the Python-checkins mailing list