From 20c189c321e88cf7782540ee01bd76ef2526e71d Mon Sep 17 00:00:00 2001 From: Stinkfist0 Date: Wed, 10 May 2017 16:45:22 +0300 Subject: [PATCH] set-python-to-path.bat: fix for command for quoted filename --- win/set-python-to-path.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win/set-python-to-path.bat b/win/set-python-to-path.bat index a76393895d..5c7ebe00bc 100755 --- a/win/set-python-to-path.bat +++ b/win/set-python-to-path.bat @@ -26,7 +26,7 @@ if not exist "%~dp0BuildDepsCache-%TARGET_ARCH%.txt". ( echo %~dp0BuildDepsCache-%TARGET_ARCH%.txt does not exist goto :EOF ) -for /f "delims== tokens=1,2" %%G in ("%~dp0BuildDepsCache-%TARGET_ARCH%.txt") do set %%G=%%H +for /f "usebackq delims== tokens=1,2" %%G in ("%~dp0BuildDepsCache-%TARGET_ARCH%.txt") do set %%G=%%H if not defined PYTHONHOME ( echo PYTHONHOME not defined goto :EOF