Skip to content

Commit

Permalink
Merged revisions 77130 via svnmerge from
Browse files Browse the repository at this point in the history
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r77130 | benjamin.peterson | 2009-12-29 21:02:34 -0600 (Tue, 29 Dec 2009) | 1 line

  wrap long line
........
  • Loading branch information
benjaminp committed Dec 30, 2009
1 parent e57d676 commit 588009e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,8 @@ class db_found(Exception): pass
exts.append( Extension('resource', ['resource.c']) )

# Sun yellow pages. Some systems have the functions in libc.
if platform not in ['cygwin', 'qnx6'] and find_file('rpcsvc/yp_prot.h', inc_dirs, []) is not None:
if (platform not in ['cygwin', 'qnx6'] and
find_file('rpcsvc/yp_prot.h', inc_dirs, []) is not None):
if (self.compiler_obj.find_library_file(lib_dirs, 'nsl')):
libs = ['nsl']
else:
Expand Down

0 comments on commit 588009e

Please sign in to comment.