Commit e78f5a1f authored by Toshio Kuratomi's avatar Toshio Kuratomi

Fix for easy_install running on python-3.2

--HG--
branch : distribute
extra : rebase_source : caaf0829ce479d95efa48e5e422e699e0c4d8ff3
parent 71e69bc8
......@@ -204,6 +204,12 @@ class easy_install(Command):
'exec_prefix': exec_prefix,
}
try:
self.config_vars['abiflags'] = sys.abiflags
except AttributeError:
# Only python-3.2+ has sys.abiflags
self.config_vars['abiflags'] = ''
if HAS_USER_SITE:
self.config_vars['userbase'] = self.install_userbase
self.config_vars['usersite'] = self.install_usersite
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment