Staging
v0.5.1
https://github.com/python/cpython
Revision ab19bd449a796ed81546d3637f1857697ff2768a authored by Brian Curtin on 07 November 2010, 22:09:05 UTC, committed by Brian Curtin on 07 November 2010, 22:09:05 UTC
...unless these are commands you only run once a year :)
1 parent 9aad7fe
Raw File
Tip revision: ab19bd449a796ed81546d3637f1857697ff2768a authored by Brian Curtin on 07 November 2010, 22:09:05 UTC
typo: annually->manually
Tip revision: ab19bd4
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