From 4f9e9432a8bd7f2d6a800a79f62f6b57e1cbe527 Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Wed, 17 Jan 2001 20:20:44 +0000 Subject: Use the extended library search path when looking for readline (simple oversight in using self.compiler.library_dirs) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a3a7c09..646dd43 100644 --- a/setup.py +++ b/setup.py @@ -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']) ) -- cgit v0.12