Replace PYTHONPATH with PYTHONHOME

This commit is contained in:
aothms
2016-02-18 14:57:57 +01:00
parent da0af77570
commit 10bec3eee0
4 changed files with 17 additions and 17 deletions
+4 -4
View File
@@ -27,10 +27,10 @@ if not exist BuildDepsCache-%TARGET_ARCH%.txt. (
goto :EOF
)
for /f "delims== tokens=1,2" %%G in (BuildDepsCache-%TARGET_ARCH%.txt) do set %%G=%%H
if not defined PYTHONPATH (
echo PYTHONPATH PYTHONPATH not defined
if not defined PYTHONHOME (
echo PYTHONHOME PYTHONHOME not defined
goto :EOF
)
echo %PYTHONPATH% set to PATH
set PATH=%PYTHONPATH%;%PATH%
echo %PYTHONHOME% set to PATH
set PATH=%PYTHONHOME%;%PATH%