commit | bda4672b019dfca67c0d97ea7452d33decbd974c | [log] [tgz] |
---|---|---|
author | Ronald Oussoren <ronaldoussoren@mac.com> | Sun Aug 01 09:02:50 2010 +0000 |
committer | Ronald Oussoren <ronaldoussoren@mac.com> | Sun Aug 01 09:02:50 2010 +0000 |
tree | 74afb5d8c1c9db499ad9aefe00933c2eb98ea5b4 | |
parent | 794f5b3559f9ae9b4b54467144c8cd37253ca47c [diff] [blame] |
Ensure that test_site actually passes with a framework build
diff --git a/Lib/site.py b/Lib/site.py index 4624bf3..2944934 100644 --- a/Lib/site.py +++ b/Lib/site.py
@@ -295,7 +295,7 @@ # locations. from sysconfig import get_config_var framework = get_config_var("PYTHONFRAMEWORK") - if framework and "/%s.framework/"%(framework,) in prefix: + if framework: sitepackages.append( os.path.join("/Library", framework, sys.version[:3], "site-packages"))