Staging
v0.8.1
Revision 0063367c7c79836608062fe7d958ae262afa820f authored by Benjamin Peterson on 03 July 2010, 13:56:56 UTC, committed by Benjamin Peterson on 03 July 2010, 13:56:56 UTC
1 parent c60082d
Raw File
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python27_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python27.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top