diff options
author | William Deegan <bill@baddogconsulting.com> | 2009-11-12 07:32:38 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2009-11-12 07:32:38 (GMT) |
commit | de49eaa521884deab59dc642b772a9d3af133df1 (patch) | |
tree | 4a4ec3aeb32b476afb41fd33ed38fb6ebdb6014e | |
parent | ddf2a2a04083384662268e0e9ce17e23a97c6f66 (diff) | |
download | SCons-de49eaa521884deab59dc642b772a9d3af133df1.zip SCons-de49eaa521884deab59dc642b772a9d3af133df1.tar.gz SCons-de49eaa521884deab59dc642b772a9d3af133df1.tar.bz2 |
Fix bug 2465 - bootstrap.py should now use the python it was invoked with instead of finding the same named executable via the PATH
-rw-r--r-- | bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.py b/bootstrap.py index 165c081..fa73270 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 |