We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fc29c8 commit 831273aCopy full SHA for 831273a
1 file changed
setup.py
@@ -607,11 +607,11 @@ def detect_modules(self):
607
# use the same library for the readline and curses modules.
608
if 'curses' in readline_termcap_library:
609
curses_library = readline_termcap_library
610
- elif self.compiler_obj.find_library_file(lib_dirs, 'ncursesw'):
+ elif self.compiler.find_library_file(lib_dirs, 'ncursesw'):
611
curses_library = 'ncursesw'
612
- elif self.compiler_obj.find_library_file(lib_dirs, 'ncurses'):
+ elif self.compiler.find_library_file(lib_dirs, 'ncurses'):
613
curses_library = 'ncurses'
614
- elif self.compiler_obj.find_library_file(lib_dirs, 'curses'):
+ elif self.compiler.find_library_file(lib_dirs, 'curses'):
615
curses_library = 'curses'
616
617
if platform == 'darwin':
0 commit comments