Staging
v0.8.1
https://github.com/python/cpython
Revision 001befaadcf562170039e085ebd4ae3318f322c2 authored by Skip Montanaro on 07 October 2008, 15:04:16 UTC, committed by Skip Montanaro on 07 October 2008, 15:04:16 UTC
1 parent 8cf7ef4
Raw File
Tip revision: 001befaadcf562170039e085ebd4ae3318f322c2 authored by Skip Montanaro on 07 October 2008, 15:04:16 UTC
backport
Tip revision: 001befa
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python30_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python30.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top