File tree Expand file tree Collapse file tree 3 files changed +17
-17
lines changed Expand file tree Collapse file tree 3 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ if "%DO_FETCH%"=="false" goto end
39
39
:fetch
40
40
41
41
if " %ORG% " == " " (set ORG=python)
42
- call " %PCBUILD% find_python.bat" " %PYTHON% "
42
+ call " %PCBUILD% \ find_python.bat" " %PYTHON% "
43
43
44
44
if " %PYTHON% " == " " (
45
45
where /Q git || echo Python 3.6 could not be found or installed, and git.exe is not on your PATH && exit /B 1
@@ -65,7 +65,7 @@ for %%e in (%libraries%) do (
65
65
git clone --depth 1 https://github.com/%ORG% /cpython-source-deps --branch %%e " %EXTERNALS_DIR% \%%e "
66
66
) else (
67
67
echo .Fetching %%e ...
68
- %PYTHON% " %PCBUILD% get_external.py" -O %ORG% %%e
68
+ %PYTHON% " %PCBUILD% \ get_external.py" -O %ORG% %%e
69
69
)
70
70
)
71
71
@@ -84,7 +84,7 @@ for %%b in (%binaries%) do (
84
84
git clone --depth 1 https://github.com/%ORG% /cpython-bin-deps --branch %%b " %EXTERNALS_DIR% \%%b "
85
85
) else (
86
86
echo .Fetching %%b ...
87
- %PYTHON% " %PCBUILD% get_external.py" -b -O %ORG% %%b
87
+ %PYTHON% " %PCBUILD% \ get_external.py" -b -O %ORG% %%b
88
88
)
89
89
)
90
90
Original file line number Diff line number Diff line change @@ -45,19 +45,19 @@ goto Usage
45
45
if not defined SRC (echo --in directory is required & exit /b 1)
46
46
if not defined OUT (echo --out directory is required & exit /b 1)
47
47
48
- call " %PCBUILD% find_msbuild.bat" %MSBUILD%
48
+ call " %PCBUILD% \ find_msbuild.bat" %MSBUILD%
49
49
if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
50
50
51
- call " %PCBUILD% find_python.bat" " %PYTHON% "
51
+ call " %PCBUILD% \ find_python.bat" " %PYTHON% "
52
52
if ERRORLEVEL 1 (echo Cannot locate python.exe on PATH or as PYTHON variable & exit /b 3)
53
53
54
- call " %PCBUILD% get_externals.bat" --openssl-src %ORG_SETTING%
54
+ call " %PCBUILD% \ get_externals.bat" --openssl-src %ORG_SETTING%
55
55
56
56
if " %PERL% " == " " where perl > " %TEMP% \perl.loc" 2 > nul && set /P PERL = < " %TEMP% \perl.loc" & del " %TEMP% \perl.loc"
57
57
if " %PERL% " == " " (echo Cannot locate perl.exe on PATH or as PERL variable & exit /b 4)
58
58
59
- %MSBUILD% " %PCBUILD% openssl.vcxproj" /p:Configuration=Release /p:Platform=Win32
59
+ %MSBUILD% " %PCBUILD% \ openssl.vcxproj" /p:Configuration=Release /p:Platform=Win32
60
60
if errorlevel 1 exit /b
61
- %MSBUILD% " %PCBUILD% openssl.vcxproj" /p:Configuration=Release /p:Platform=x64
61
+ %MSBUILD% " %PCBUILD% \ openssl.vcxproj" /p:Configuration=Release /p:Platform=x64
62
62
if errorlevel 1 exit /b
63
63
Original file line number Diff line number Diff line change @@ -38,18 +38,18 @@ echo Unrecognized option: %1
38
38
goto Usage
39
39
40
40
:Build
41
- call " %PCBUILD% find_msbuild.bat" %MSBUILD%
41
+ call " %PCBUILD% \ find_msbuild.bat" %MSBUILD%
42
42
if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
43
43
44
- rem call "%PCBUILD%find_python.bat" "%PYTHON%"
44
+ rem call "%PCBUILD%\ find_python.bat" "%PYTHON%"
45
45
rem if ERRORLEVEL 1 (echo Cannot locate python.exe on PATH or as PYTHON variable & exit /b 3)
46
46
47
- call " %PCBUILD% get_externals.bat" --tkinter-src %ORG_SETTING%
47
+ call " %PCBUILD% \ get_externals.bat" --tkinter-src %ORG_SETTING%
48
48
49
- %MSBUILD% " %PCBUILD% tcl.vcxproj" /p:Configuration=Release /p:Platform=Win32
50
- %MSBUILD% " %PCBUILD% tk.vcxproj" /p:Configuration=Release /p:Platform=Win32
51
- %MSBUILD% " %PCBUILD% tix.vcxproj" /p:Configuration=Release /p:Platform=Win32
49
+ %MSBUILD% " %PCBUILD% \ tcl.vcxproj" /p:Configuration=Release /p:Platform=Win32
50
+ %MSBUILD% " %PCBUILD% \ tk.vcxproj" /p:Configuration=Release /p:Platform=Win32
51
+ %MSBUILD% " %PCBUILD% \ tix.vcxproj" /p:Configuration=Release /p:Platform=Win32
52
52
53
- %MSBUILD% " %PCBUILD% tcl.vcxproj" /p:Configuration=Release /p:Platform=x64
54
- %MSBUILD% " %PCBUILD% tk.vcxproj" /p:Configuration=Release /p:Platform=x64
55
- %MSBUILD% " %PCBUILD% tix.vcxproj" /p:Configuration=Release /p:Platform=x64
53
+ %MSBUILD% " %PCBUILD% \ tcl.vcxproj" /p:Configuration=Release /p:Platform=x64
54
+ %MSBUILD% " %PCBUILD% \ tk.vcxproj" /p:Configuration=Release /p:Platform=x64
55
+ %MSBUILD% " %PCBUILD% \ tix.vcxproj" /p:Configuration=Release /p:Platform=x64
You can’t perform that action at this time.
0 commit comments