diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-06-15 21:19:50 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-06-15 21:19:50 (GMT) |
commit | ab4fd61b606c44bb9b826188c917b152349daf50 (patch) | |
tree | dea9bb9f61438235b2e068938f79f86cbbabd07d /Lib | |
parent | b39a0c242d8fcefbc38be76aee4d0ec27ccffdf4 (diff) | |
download | cpython-ab4fd61b606c44bb9b826188c917b152349daf50.zip cpython-ab4fd61b606c44bb9b826188c917b152349daf50.tar.gz cpython-ab4fd61b606c44bb9b826188c917b152349daf50.tar.bz2 |
Fix for buildbot failure in r81999.
Diffstat (limited to 'Lib')
-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 91298d1..03f2d5c 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. |