Staging
v0.8.1
Revision da3a1b120055855a464c2d5f5143021ae8f5dc86 authored by Benjamin Peterson on 16 June 2008, 20:52:48 UTC, committed by Benjamin Peterson on 16 June 2008, 20:52:48 UTC
1 parent b8bfdf5
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 python30_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python30.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top