Commit 4f9e9432 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Use the extended library search path when looking for readline (simple

   oversight in using self.compiler.library_dirs)
parent 7dfe6e32
......@@ -173,7 +173,7 @@ class PyBuildExt(build_ext):
exts.append( Extension('rgbimg', ['rgbimgmodule.c']) )
# readline
if (self.compiler.find_library_file(self.compiler.library_dirs, 'readline')):
if (self.compiler.find_library_file(lib_dirs, 'readline')):
exts.append( Extension('readline', ['readline.c'],
libraries=['readline', 'termcap']) )
......
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