summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2008-05-23 15:06:50 +0000
committerMartin v. Löwis <martin@v.loewis.de>2008-05-23 15:06:50 +0000
commit8c255e4173cfc86ff7015b8f75dccf0d41b24003 (patch)
tree16f42f4f82367420f4c70a6faf7e97a4c43579b1 /setup.py
parentbadd7da622460b8dd8405545f59da1e2c0ef79e6 (diff)
downloadcpython-git-8c255e4173cfc86ff7015b8f75dccf0d41b24003.tar.gz
Patch #1722225: Support QNX 6.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 4663cece8c..79ad5aabe5 100644
--- a/setup.py
+++ b/setup.py
@@ -1009,7 +1009,7 @@ class PyBuildExt(build_ext):
missing.append('resource')
# Sun yellow pages. Some systems have the functions in libc.
- if platform not in ['cygwin', 'atheos']:
+ if platform not in ['cygwin', 'atheos', 'qnx6']:
if (self.compiler.find_library_file(lib_dirs, 'nsl')):
libs = ['nsl']
else: