From b69c758f3bbbc9534d6a45b9b3cf5d14cbc3d48c Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Wed, 28 Feb 2001 19:49:57 +0000 Subject: Fix for bug #404875: fix typo in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f9524e6..a40715c 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')): -- cgit v0.12