Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 65b2eb9dfebe873e8ee5821f13d5a8c07d9c89c2 authored by Georg Brandl on 05 December 2010, 11:42:38 UTC
Fix title.
Tip revision: 65b2eb9
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python32_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python32.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top