From: bdbaddog Date: Thu, 12 Nov 2009 07:32:38 +0000 (+0000) Subject: Fix bug 2465 - bootstrap.py should now use the python it was invoked with instead... X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=e59c68c4dde87e3edcafe8d88add1e18c7c1282f;p=scons.git Fix bug 2465 - bootstrap.py should now use the python it was invoked with instead of finding the same named executable via the PATH git-svn-id: http://scons.tigris.org/svn/scons/trunk@4384 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- 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