Staging
v0.5.1
https://github.com/python/cpython
Revision 2895244653be4d01ffb510cfa2c12754af6423a9 authored by Vinay Sajip on 24 June 2012, 23:47:46 UTC, committed by Vinay Sajip on 24 June 2012, 23:47:46 UTC
1 parent e51a369
Raw File
Tip revision: 2895244653be4d01ffb510cfa2c12754af6423a9 authored by Vinay Sajip on 24 June 2012, 23:47:46 UTC
Closes #15173: Tidied up copyright statements and removed pythonv references.
Tip revision: 2895244
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