diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-01-17 20:20:44 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-01-17 20:20:44 (GMT) |
commit | 4f9e9432a8bd7f2d6a800a79f62f6b57e1cbe527 (patch) | |
tree | a0f0b865bb023aac58924cddc459d37a50ba1399 | |
parent | 7dfe6e3264cb81e3b0b7801042ef9a3cdfa9b25e (diff) | |
download | cpython-4f9e9432a8bd7f2d6a800a79f62f6b57e1cbe527.zip cpython-4f9e9432a8bd7f2d6a800a79f62f6b57e1cbe527.tar.gz cpython-4f9e9432a8bd7f2d6a800a79f62f6b57e1cbe527.tar.bz2 |
Use the extended library search path when looking for readline (simple
oversight in using self.compiler.library_dirs)
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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']) ) |