Staging
v0.5.1
https://github.com/python/cpython
Revision 87418afb3b6c6ef220df439004501093609abb2e authored by Éric Araujo on 29 May 2011, 01:48:49 UTC, committed by Éric Araujo on 29 May 2011, 01:48:49 UTC
1 parent 6a21f55
Raw File
Tip revision: 87418afb3b6c6ef220df439004501093609abb2e authored by Éric Araujo on 29 May 2011, 01:48:49 UTC
Fix typo in 0311f62714f7
Tip revision: 87418af
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python31_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python31.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top