diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-05-23 15:06:50 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-05-23 15:06:50 +0000 |
commit | 8c255e4173cfc86ff7015b8f75dccf0d41b24003 (patch) | |
tree | 16f42f4f82367420f4c70a6faf7e97a4c43579b1 /setup.py | |
parent | badd7da622460b8dd8405545f59da1e2c0ef79e6 (diff) | |
download | cpython-git-8c255e4173cfc86ff7015b8f75dccf0d41b24003.tar.gz |
Patch #1722225: Support QNX 6.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |