summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatoly Techtonik <techtonik@gmail.com>2011-04-16 07:55:06 +0000
committerAnatoly Techtonik <techtonik@gmail.com>2011-04-16 07:55:06 +0000
commit5d90a3b7becb500b3fd380f9a54a60e124af26ab (patch)
treeb82661da3cf5045025117e8f996e9d5f0baeeb1f
parentf52c783c433a98961f6ed5baaf56ee527f2dc71c (diff)
downloadscons-git-5d90a3b7becb500b3fd380f9a54a60e124af26ab.tar.gz
make .bat files execute .py script with the same name instead of trying to set sys.path inline
it is a final fix for issue #2051 to make SCons easy_installable on Windows
-rw-r--r--src/script/scons.bat5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/script/scons.bat b/src/script/scons.bat
index f0ffa9a1b..b3f2dc288 100644
--- a/src/script/scons.bat
+++ b/src/script/scons.bat
@@ -17,7 +17,10 @@ goto endscons
setlocal
@REM ensure the script will be executed with the Python it was installed for
set path=%~dp0;%~dp0..;%path%
-python -c "from os.path import join; import sys; sys.path = [ join(sys.prefix, 'Lib', 'site-packages', 'scons-__VERSION__'), join(sys.prefix, 'Lib', 'site-packages', 'scons'), join(sys.prefix, 'scons-__VERSION__'), join(sys.prefix, 'scons')] + sys.path; import SCons.Script; SCons.Script.main()" %*
+@REM try the script named as the .bat file in current dir, then in Scripts subdir
+set scriptname=%~dp0%~n0.py
+if not exist %scriptname% set scriptname=%~dp0Scripts\%~n0.py
+python "%scriptname%" %*
endlocal & set SCONS_ERRORLEVEL=%ERRORLEVEL%
if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto returncode