diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-06-15 21:19:50 +0000 |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-06-15 21:19:50 +0000 |
commit | ab4fd61b606c44bb9b826188c917b152349daf50 (patch) | |
tree | dea9bb9f61438235b2e068938f79f86cbbabd07d /Lib/sysconfig.py | |
parent | b39a0c242d8fcefbc38be76aee4d0ec27ccffdf4 (diff) | |
download | cpython-git-ab4fd61b606c44bb9b826188c917b152349daf50.tar.gz |
Fix for buildbot failure in r81999.
Diffstat (limited to 'Lib/sysconfig.py')
-rw-r--r-- | Lib/sysconfig.py | 2 |
1 files changed, 2 insertions, 0 deletions
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. |