From: Ronald Oussoren Date: Tue, 15 Jun 2010 21:19:50 +0000 (+0000) Subject: Fix for buildbot failure in r81999. X-Git-Tag: v3.2a1~522 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab4fd61b606c44bb9b826188c917b152349daf50;p=python Fix for buildbot failure in r81999. --- diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py index 91298d1661..03f2d5c542 100644 --- a/Lib/sysconfig.py +++ b/Lib/sysconfig.py @@ -432,6 +432,8 @@ def get_config_vars(*args): 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.