Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
45efe034e66973c8702b8bbbcac041c873aa5da3
/
.
/
PCbuild
/
prepare_ssl.bat
blob: 83b58668476bae22cd5b5110d3568a9dcf6506e6 [
file
] [
log
] [
blame
]
@echo
off
if
not
defined
HOST_PYTHON
(
if
"%1"
EQU
"Debug"
(
shift
set
HOST_PYTHON
=
python_d
.
exe
if
not
exist python35_d
.
dll
exit
1
)
ELSE
(
set
HOST_PYTHON
=
python
.
exe
if
not
exist python35
.
dll
exit
1
)
)
%
HOST_PYTHON
%
"%~dp0prepare_ssl.py"
%
1