diff options
author | Hye-Shik Chang <perky@FreeBSD.org> | 2006-10-09 12:11:00 +0000 |
---|---|---|
committer | Hye-Shik Chang <perky@FreeBSD.org> | 2006-10-09 12:11:00 +0000 |
commit | edc730a7126e6cd45379bfce809777f2b3f6988c (patch) | |
tree | 6804a8e97bb369a0918459cb0eb50e56c23d21a9 /devel/newt/files/setup.py | |
parent | Fix build on environments with ncurses port. (diff) |
Fix build with WITH_PYTHON=yes on amd64
PR: 86283
Submitted by: Tim Middleton <x@vex.net>
Notes
Notes:
svn path=/head/; revision=175074
Diffstat (limited to 'devel/newt/files/setup.py')
-rw-r--r-- | devel/newt/files/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/newt/files/setup.py b/devel/newt/files/setup.py index 3d08df5e3ec7..6c5e3fe1f5b4 100644 --- a/devel/newt/files/setup.py +++ b/devel/newt/files/setup.py @@ -10,7 +10,7 @@ setup ( name = 'newt', description = 'Python interface to Newt module', py_modules = ['snack'], ext_modules = [ Extension( - name='_snack', + name='_snack', sources=['snackmodule.c'], include_dirs=['.', LOCALBASE+'/include', PREFIX+'/include'], library_dirs=['.', LOCALBASE+'/lib', PREFIX+'/lib'], |