diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-12-30 03:02:34 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-12-30 03:02:34 (GMT) |
commit | eb74da8e67bed4beef1bfc97384b3aa6e0f9836b (patch) | |
tree | 488e12d146075f7627ab21da20cdf129ee050296 | |
parent | 500ce2338485b863880b0b9f69007ffed94e11ee (diff) | |
download | cpython-eb74da8e67bed4beef1bfc97384b3aa6e0f9836b.zip cpython-eb74da8e67bed4beef1bfc97384b3aa6e0f9836b.tar.gz cpython-eb74da8e67bed4beef1bfc97384b3aa6e0f9836b.tar.bz2 |
wrap long line
-rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1088,7 +1088,8 @@ class PyBuildExt(build_ext): missing.append('resource') # Sun yellow pages. Some systems have the functions in libc. - if platform not in ['cygwin', 'atheos', 'qnx6'] and find_file('rpcsvc/yp_prot.h', inc_dirs, []) is not None: + if (platform not in ['cygwin', 'atheos', '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: |