Commit b69c758f authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Fix for bug #404875: fix typo in setup.py

parent 63357734
...@@ -398,7 +398,7 @@ class PyBuildExt(build_ext): ...@@ -398,7 +398,7 @@ class PyBuildExt(build_ext):
# Curses support, requring the System V version of curses, often # Curses support, requring the System V version of curses, often
# provided by the ncurses library. # provided by the ncurses library.
if platform == 'sunos4': if platform == 'sunos4':
include_dirs += ['/usr/5include'] inc_dirs += ['/usr/5include']
lib_dirs += ['/usr/5lib'] lib_dirs += ['/usr/5lib']
if (self.compiler.find_library_file(lib_dirs, 'ncurses')): if (self.compiler.find_library_file(lib_dirs, 'ncurses')):
......
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