summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-12-30 03:02:34 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-12-30 03:02:34 (GMT)
commiteb74da8e67bed4beef1bfc97384b3aa6e0f9836b (patch)
tree488e12d146075f7627ab21da20cdf129ee050296
parent500ce2338485b863880b0b9f69007ffed94e11ee (diff)
downloadcpython-eb74da8e67bed4beef1bfc97384b3aa6e0f9836b.zip
cpython-eb74da8e67bed4beef1bfc97384b3aa6e0f9836b.tar.gz
cpython-eb74da8e67bed4beef1bfc97384b3aa6e0f9836b.tar.bz2
wrap long line
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index d2334e7..1af4022 100644
--- a/setup.py
+++ b/setup.py
@@ -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: