]> granicus.if.org Git - python/commitdiff
Fix for bug #404875: fix typo in setup.py
authorAndrew M. Kuchling <amk@amk.ca>
Wed, 28 Feb 2001 19:49:57 +0000 (19:49 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Wed, 28 Feb 2001 19:49:57 +0000 (19:49 +0000)
setup.py

index f9524e68f08e60904e1a6b35f76cacb6c269a04c..a40715c50160cfa42145a06004cb648d049d97db 100644 (file)
--- 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')):