From: Andrew M. Kuchling Date: Wed, 28 Feb 2001 19:49:57 +0000 (+0000) Subject: Fix for bug #404875: fix typo in setup.py X-Git-Tag: v2.1b1~126 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b69c758f3bbbc9534d6a45b9b3cf5d14cbc3d48c;p=thirdparty%2FPython%2Fcpython.git Fix for bug #404875: fix typo in setup.py --- diff --git a/setup.py b/setup.py index f9524e68f08e..a40715c50160 100644 --- a/setup.py +++ b/setup.py @@ -398,7 +398,7 @@ class PyBuildExt(build_ext): # Curses support, requring the System V version of curses, often # provided by the ncurses library. if platform == 'sunos4': - include_dirs += ['/usr/5include'] + inc_dirs += ['/usr/5include'] lib_dirs += ['/usr/5lib'] if (self.compiler.find_library_file(lib_dirs, 'ncurses')):