Staging
v0.8.1
https://github.com/python/cpython
Revision cf626032763077bf959937705ed35f9e2b40a862 authored by Benjamin Peterson on 16 February 2014, 19:52:01 UTC, committed by Benjamin Peterson on 16 February 2014, 19:52:01 UTC
1 parent eb43736
Raw File
Tip revision: cf626032763077bf959937705ed35f9e2b40a862 authored by Benjamin Peterson on 16 February 2014, 19:52:01 UTC
backout fafac90b69c4
Tip revision: cf62603
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