Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
a33e9f704735d356a0fac2a77ba44dd9b0a05c63
/
.
/
PCbuild
/
prepare_ssl.bat
blob: 1be73e6c365c677035eff6f526656592faa8f45f [
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