diff options
author | Richard Viney <richard.viney@gmail.com> | 2012-08-31 03:17:42 (GMT) |
---|---|---|
committer | Richard Viney <richard.viney@gmail.com> | 2012-08-31 03:17:42 (GMT) |
commit | 71e49a9594f1ece94cc9011647ba81018338259e (patch) | |
tree | f1c226e99e779bdd748798ec31726a99b4fbe499 | |
parent | a54670d821ac18abc3880ef9ca03c2f84edd5ae6 (diff) | |
download | SCons-71e49a9594f1ece94cc9011647ba81018338259e.zip SCons-71e49a9594f1ece94cc9011647ba81018338259e.tar.gz SCons-71e49a9594f1ece94cc9011647ba81018338259e.tar.bz2 |
Fixed error on Windows when there is a space in the Python installation directory (http://scons.tigris.org/issues/show_bug.cgi?id=2790)
-rw-r--r-- | src/script/scons.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/scons.bat b/src/script/scons.bat index b3f2dc2..fddeca4 100644 --- a/src/script/scons.bat +++ b/src/script/scons.bat @@ -19,7 +19,7 @@ setlocal set path=%~dp0;%~dp0..;%path%
@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
+if not exist "%scriptname%" set scriptname=%~dp0Scripts\%~n0.py
python "%scriptname%" %*
endlocal & set SCONS_ERRORLEVEL=%ERRORLEVEL%
|