[Python-checkins] r77135 - python/branches/release31-maint/setup.py

benjamin.peterson python-checkins at python.org
Wed Dec 30 04:40:09 CET 2009


Author: benjamin.peterson
Date: Wed Dec 30 04:40:09 2009
New Revision: 77135

Log:
compiler_obj -> compiler

Modified:
   python/branches/release31-maint/setup.py

Modified: python/branches/release31-maint/setup.py
==============================================================================
--- python/branches/release31-maint/setup.py	(original)
+++ python/branches/release31-maint/setup.py	Wed Dec 30 04:40:09 2009
@@ -981,7 +981,7 @@
             # 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 (self.compiler_obj.find_library_file(lib_dirs, 'nsl')):
+                if (self.compiler.find_library_file(lib_dirs, 'nsl')):
                     libs = ['nsl']
                 else:
                     libs = []


More information about the Python-checkins mailing list