diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-05-29 21:23:33 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-05-29 21:23:33 (GMT) |
commit | ef3dab28f25c6725c789704ef140e23071ceb923 (patch) | |
tree | a19e39136d4b97b84b4e3cb05bdf5b49e8e52d56 | |
parent | 9287acf83df56a11aaa001657df652ed6804b105 (diff) | |
download | cpython-ef3dab28f25c6725c789704ef140e23071ceb923.zip cpython-ef3dab28f25c6725c789704ef140e23071ceb923.tar.gz cpython-ef3dab28f25c6725c789704ef140e23071ceb923.tar.bz2 |
Turn off debugging output for building bsddb.
-rw-r--r-- | setup.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -842,8 +842,9 @@ class PyBuildExt(build_ext): 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 |