Staging
v0.5.1
https://github.com/python/cpython
Revision cd2070590286b52b7aebfb4ed4fe409ac759f94d authored by Benjamin Peterson on 29 May 2011, 21:50:27 UTC, committed by Benjamin Peterson on 29 May 2011, 21:50:27 UTC
1 parent 8c0c9d2
Raw File
Tip revision: cd2070590286b52b7aebfb4ed4fe409ac759f94d authored by Benjamin Peterson on 29 May 2011, 21:50:27 UTC
bump to 2.7.2rc1
Tip revision: cd20705
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