summaryrefslogtreecommitdiff
path: root/bootstrap.py
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2009-11-12 07:32:38 +0000
committerWilliam Deegan <bill@baddogconsulting.com>2009-11-12 07:32:38 +0000
commit3e380de482d4f3a4bffb5b9cd7a39030c3d80e0a (patch)
tree4a4ec3aeb32b476afb41fd33ed38fb6ebdb6014e /bootstrap.py
parent6d8eedc669e8b2407bec7ef796ba66d4ea38fb0a (diff)
downloadscons-3e380de482d4f3a4bffb5b9cd7a39030c3d80e0a.tar.gz
Fix bug 2465 - bootstrap.py should now use the python it was invoked with instead of finding the same named executable via the PATH
Diffstat (limited to 'bootstrap.py')
-rw-r--r--bootstrap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.py b/bootstrap.py
index 165c081d..fa732700 100644
--- a/bootstrap.py
+++ b/bootstrap.py
@@ -201,7 +201,7 @@ if update_only:
sys.exit(0)
args = [
- os.path.split(sys.executable)[1],
+ sys.executable,
os.path.join(bootstrap_dir, scons_py)
] + pass_through_args