Commit c8e04e09 authored by Toshio Kuratomi's avatar Toshio Kuratomi

Use different version of py3.2 fix from Vinay Sajip

--HG--
branch : distribute
extra : rebase_source : 9eea7c29a6f7e961ca6a39decdc2e52c828e8464
parent e78f5a1f
......@@ -202,14 +202,10 @@ class easy_install(Command):
'prefix': prefix,
'sys_exec_prefix': exec_prefix,
'exec_prefix': exec_prefix,
# Only python 3.2+ has abiflags
'abiflags': getattr(sys, 'abiflags', ''),
}
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