Skip to content

Commit 3323c2a

Browse files
author
gregory.p.smith
committed
print out information about which BerkeleyDB library was found by
setup.py to use to build the bsddb module. git-svn-id: http://svn.python.org/projects/python/trunk@63604 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent ddca7c7 commit 3323c2a

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -815,9 +815,8 @@ class db_found(Exception): pass
815815
if db_setup_debug: print "db lib: ", dblib, "not found"
816816

817817
except db_found:
818-
if db_setup_debug:
819-
print "db lib: using", db_ver, dblib
820-
print "db: lib dir", dblib_dir, "inc dir", db_incdir
818+
print "bsddb using BerkeleyDB lib:", db_ver, dblib
819+
print "bsddb lib dir:", dblib_dir, " inc dir:", db_incdir
821820
db_incs = [db_incdir]
822821
dblibs = [dblib]
823822
# We add the runtime_library_dirs argument because the

0 commit comments

Comments
 (0)