Staging
v0.5.1
https://github.com/python/cpython
Revision 9bf51fefd011de3a439b7553e65a759c4469285d authored by Barry Warsaw on 01 October 2013, 00:37:45 UTC, committed by Barry Warsaw on 01 October 2013, 00:37:45 UTC
1 parent be1950d
Raw File
Tip revision: 9bf51fefd011de3a439b7553e65a759c4469285d authored by Barry Warsaw on 01 October 2013, 00:37:45 UTC
Bump copyright years.
Tip revision: 9bf51fe
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python26_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python26.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top