2008-01-02 13:43:40 -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
|
2008-01-02 13:43:40 -04:00
|
|
|
) ELSE (
|
|
|
|
set HOST_PYTHON=python.exe
|
2009-01-10 23:28:13 -04:00
|
|
|
if not exist python27.dll exit 1
|
2008-01-02 13:43:40 -04:00
|
|
|
)
|
|
|
|
)
|
|
|
|
%HOST_PYTHON% build_ssl.py %1 %2 %3
|
|
|
|
|