Staging
v0.5.1
Revision eda199030b1004dbce32486c9285c25c68871478 authored by Ezio Melotti on 14 May 2011, 06:17:52 UTC, committed by Ezio Melotti on 14 May 2011, 06:17:52 UTC
1 parent fc778fd
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