2007-11-22 07:21:16 -04:00
|
|
|
@echo off
|
|
|
|
if not defined HOST_PYTHON (
|
|
|
|
if %1 EQU Debug (
|
|
|
|
set HOST_PYTHON=python_d.exe
|
2009-01-10 23:28:13 -04:00
|
|
|
if not exist python27_d.dll exit 1
|
2007-11-22 07:21:16 -04:00
|
|
|
) ELSE (
|
|
|
|
set HOST_PYTHON=python.exe
|
2009-01-10 23:28:13 -04:00
|
|
|
if not exist python27.dll exit 1
|
2007-11-22 07:21:16 -04:00
|
|
|
)
|
|
|
|
)
|
|
|
|
%HOST_PYTHON% build_ssl.py %1 %2 %3
|
|
|
|
|