diff options
author | Anatoly Techtonik <techtonik@gmail.com> | 2010-07-05 20:25:39 (GMT) |
---|---|---|
committer | Anatoly Techtonik <techtonik@gmail.com> | 2010-07-05 20:25:39 (GMT) |
commit | b48b4b61203d881cea5d3077d570870dae8d710c (patch) | |
tree | f1d2de213980dcea8f5f2aae92f3c7cbbd26992a /bootstrap.py | |
parent | 9cd3bd61a426a2c1dad2fb0c6a52d08f56493c02 (diff) | |
download | SCons-b48b4b61203d881cea5d3077d570870dae8d710c.zip SCons-b48b4b61203d881cea5d3077d570870dae8d710c.tar.gz SCons-b48b4b61203d881cea5d3077d570870dae8d710c.tar.bz2 |
use subprocess in bootstrap.py instead of os.execve to avoid losing
output control on Windows - see http://bugs.python.org/issue9148
Diffstat (limited to 'bootstrap.py')
-rw-r--r-- | bootstrap.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bootstrap.py b/bootstrap.py index a04dbc8..3f76138 100644 --- a/bootstrap.py +++ b/bootstrap.py @@ -24,6 +24,7 @@ import os import os.path import sys +import subprocess __doc__ = """bootstrap.py @@ -200,7 +201,7 @@ sys.stdout.flush() os.environ['SCONS_LIB_DIR'] = os.path.join(bootstrap_dir, src_engine) -os.execve(sys.executable, args, os.environ) +sys.exit(subprocess.Popen(args, env=os.environ).wait()) # Local Variables: # tab-width:4 |