Staging
v0.8.1
Revision c9a42070a64af6d75529118b6169ab172218c170 authored by Georg Brandl on 21 February 2012, 21:36:27 UTC, committed by Georg Brandl on 21 February 2012, 21:36:27 UTC
1 parent 69e9727
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 python31_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python31.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top