Staging
v0.8.1
Revision 66f7d66174b0898e436ea821309ee47a1b297a8f authored by Victor Stinner on 23 June 2011, 12:22:28 UTC, committed by Victor Stinner on 23 June 2011, 12:22:28 UTC
1 parent f25ae48
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