Commit d61a65ff by Michael DeHaan

Merge pull request #3377 from kjkuan/easy_install_fix

Fix the issue of easy_install ignoring virtualenv_site_packages=yes.
parents 467f612e a07324c5
......@@ -111,7 +111,7 @@ def main():
command = '%s %s' % (virtualenv, env)
if site_packages:
command += ' --system-site-packages'
rc_venv, out_venv, err_venv = module.run_command('%s %s' % (virtualenv, env))
rc_venv, out_venv, err_venv = module.run_command(command)
rc += rc_venv
out += out_venv
......
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