Staging
v0.8.1
Revision a50b0de5779bf73bc83ab9b31a89e2b4129002e8 authored by doko@ubuntu.com on 13 April 2015, 19:55:59 UTC, committed by doko@ubuntu.com on 13 April 2015, 19:55:59 UTC
1 parent 9e7ece2
Raw File
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