From ab4fd61b606c44bb9b826188c917b152349daf50 Mon Sep 17 00:00:00 2001 From: Ronald Oussoren Date: Tue, 15 Jun 2010 21:19:50 +0000 Subject: [PATCH] Fix for buildbot failure in r81999. --- Lib/sysconfig.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py index 91298d1661c..03f2d5c5420 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.