Commit 1dbc66bc authored by Stefan H. Holek's avatar Stefan H. Holek

Merged in leetrout/distribute (pull request #24)

--HG--
branch : distribute
extra : rebase_source : 1b2cc2c4e291dae6aeb47791c7c35510ca2c8e4f
parents acdb434b 25e81962
...@@ -446,7 +446,8 @@ def _relaunch(): ...@@ -446,7 +446,8 @@ def _relaunch():
# we have to relaunch the process # we have to relaunch the process
# pip marker to avoid a relaunch bug # pip marker to avoid a relaunch bug
_cmd = ['-c', 'install', '--single-version-externally-managed'] _cmd = ['-c', 'install', '--single-version-externally-managed']
if sys.argv[:3] == _cmd: _cmd2 = ['-c', 'install', '--record']
if sys.argv[:3] == _cmd1 or sys.argv[:3] == _cmd2:
sys.argv[0] = 'setup.py' sys.argv[0] = 'setup.py'
args = [sys.executable] + sys.argv args = [sys.executable] + sys.argv
sys.exit(subprocess.call(args)) sys.exit(subprocess.call(args))
......
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