Staging
v0.5.1
https://github.com/python/cpython
Revision ee227ae7cf1f88e865c168a8f13743e92ade1938 authored by Zachary Ware on 18 February 2014, 17:35:15 UTC, committed by Zachary Ware on 18 February 2014, 17:35:15 UTC
1 parent 907f017
Raw File
Tip revision: ee227ae7cf1f88e865c168a8f13743e92ade1938 authored by Zachary Ware on 18 February 2014, 17:35:15 UTC
Issue #20609: Merge with 3.3.
Tip revision: ee227ae
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python34_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python34.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top