Staging
v0.5.1
https://github.com/python/cpython
Revision 073070629bfd8162bf969da961e929366d1d8f7c authored by Georg Brandl on 12 May 2011, 05:47:06 UTC, committed by Georg Brandl on 12 May 2011, 05:47:06 UTC
1 parent c1ec7b5
Raw File
Tip revision: 073070629bfd8162bf969da961e929366d1d8f7c authored by Georg Brandl on 12 May 2011, 05:47:06 UTC
#12061: remove duplicate glossary entry.
Tip revision: 0730706
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python27_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python27.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top