[issue1706863] Failed to build Python 2.5.1 with sqlite3

Eh Tan report at bugs.python.org
Sun Feb 24 10:13:33 CET 2008


Eh Tan added the comment:

The problem is at line 890, setup.py, r60970.

sqlite_libfile = self.compiler.find_library_file(                      
           
                     sqlite_dirs_to_check + lib_dirs, 'sqlite3')
sqlite_libdir = [os.path.abspath(os.path.dirname(sqlite_libfile))]
                                                                       
       

self.compiler.find_library_file() will return None if the library is not
found. The code passes None to os.path.dirname and cause the error.

----------
nosy: +tan2

_____________________________________
Tracker <report at bugs.python.org>
<http://bugs.python.org/issue1706863>
_____________________________________


More information about the Python-bugs-list mailing list