Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: a2aa2ef3136e4190d533447e13a79b49522eb0ce authored by Benjamin Peterson on 23 February 2012, 15:52:17 UTC
bump to 2.7.3rc1
Tip revision: a2aa2ef
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python27_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python27.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top