Staging
v0.5.1
https://github.com/python/cpython
Revision ef9f2bde372d2213baa71467731be9d0e5317160 authored by Benjamin Peterson on 01 May 2009, 20:45:43 UTC, committed by Benjamin Peterson on 01 May 2009, 20:45:43 UTC
1 parent d2e0c79
Raw File
Tip revision: ef9f2bde372d2213baa71467731be9d0e5317160 authored by Benjamin Peterson on 01 May 2009, 20:45:43 UTC
add myself
Tip revision: ef9f2bd
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