Staging
v0.5.1
https://github.com/python/cpython
Revision 1803024c8a13c14d1f02e640ddca054077449698 authored by Barry Warsaw on 01 March 2010, 22:16:51 UTC, committed by Barry Warsaw on 01 March 2010, 22:16:51 UTC
1 parent fc79e8f
Raw File
Tip revision: 1803024c8a13c14d1f02e640ddca054077449698 authored by Barry Warsaw on 01 March 2010, 22:16:51 UTC
More copyright year updates.
Tip revision: 1803024
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