From b48b4b61203d881cea5d3077d570870dae8d710c Mon Sep 17 00:00:00 2001 From: Anatoly Techtonik Date: Mon, 5 Jul 2010 20:25:39 +0000 Subject: use subprocess in bootstrap.py instead of os.execve to avoid losing output control on Windows - see http://bugs.python.org/issue9148 --- bootstrap.py | 3 ++- src/CHANGES.txt | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) 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 diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 0df4d37..d87427c 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -7,6 +7,11 @@ RELEASE 2.1.0.alpha.yyyymmdd - NEW DATE WILL BE INSERTED HERE + From Anatoly Techtonik: + + - use subprocess in bootstrap.py instead of os.execve to avoid + losing output control on Windows (http://bugs.python.org/issue9148) + From Alexander Goomenyuk: - Add .sx to assembly source scanner list so .sx files -- cgit v0.12