Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 906e26e897b4b2e4b938c65fc4cf9d3b13fa069d authored by Martin v. Löwis on 14 January 2010, 17:41:58 UTC
Prepare for 2.5.5c1.
Tip revision: 906e26e
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
  ) ELSE (
    set HOST_PYTHON=python.exe
  )
)
%HOST_PYTHON% build_ssl.py %1 %2

back to top