[Python-checkins] r82005 - python/branches/py3k/Lib/sysconfig.py

ronald.oussoren python-checkins at python.org
Tue Jun 15 23:19:50 CEST 2010


Author: ronald.oussoren
Date: Tue Jun 15 23:19:50 2010
New Revision: 82005

Log:
Fix for buildbot failure in  r81999.



Modified:
   python/branches/py3k/Lib/sysconfig.py

Modified: python/branches/py3k/Lib/sysconfig.py
==============================================================================
--- python/branches/py3k/Lib/sysconfig.py	(original)
+++ python/branches/py3k/Lib/sysconfig.py	Tue Jun 15 23:19:50 2010
@@ -432,6 +432,8 @@
 
         if 'srcdir' not in _CONFIG_VARS:
             _CONFIG_VARS['srcdir'] = _PROJECT_BASE
+        else:
+            _CONFIG_VARS['srcdir'] = realpath(_CONFIG_VARS['srcdir'])
 
 
         # Convert srcdir into an absolute path if it appears necessary.


More information about the Python-checkins mailing list