Staging
v0.8.1
https://github.com/python/cpython
Revision 0fd3972a3f8f9fcb9cecd30a608eea02d6b3b18e authored by Benjamin Peterson on 17 June 2014, 06:16:06 UTC, committed by Benjamin Peterson on 17 June 2014, 06:16:06 UTC
2 parent s 6cd1954 + 314dc12
Raw File
Tip revision: 0fd3972a3f8f9fcb9cecd30a608eea02d6b3b18e authored by Benjamin Peterson on 17 June 2014, 06:16:06 UTC
merge 3.2
Tip revision: 0fd3972
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python33_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python33.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top