Staging
v0.5.1
https://github.com/python/cpython
Revision 398e865076e6ee2396b28c139c0df66dccd14376 authored by Jack Diederich on 22 February 2010, 22:51:37 UTC, committed by Jack Diederich on 22 February 2010, 22:51:37 UTC
1 parent c65d55f
Raw File
Tip revision: 398e865076e6ee2396b28c139c0df66dccd14376 authored by Jack Diederich on 22 February 2010, 22:51:37 UTC
commit the rest of my svnmerge
Tip revision: 398e865
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