summaryrefslogtreecommitdiffstats
path: root/PCbuild/prepare_ssl.bat
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2018-12-11 03:52:36 (GMT)
committerGitHub <noreply@github.com>2018-12-11 03:52:36 (GMT)
commit4824385fec0a1de99b4183f995a3e4923771bf64 (patch)
tree0ecf63cc3fb18e5e85b98537da126a1cde273c60 /PCbuild/prepare_ssl.bat
parent0cd6391fd890368ea1743dac50c366b42f2fd126 (diff)
downloadcpython-4824385fec0a1de99b4183f995a3e4923771bf64.zip
cpython-4824385fec0a1de99b4183f995a3e4923771bf64.tar.gz
cpython-4824385fec0a1de99b4183f995a3e4923771bf64.tar.bz2
bpo-35401: Update Windows build to OpenSSL 1.1.0j (GH-11088)
Diffstat (limited to 'PCbuild/prepare_ssl.bat')
-rw-r--r--PCbuild/prepare_ssl.bat9
1 files changed, 0 insertions, 9 deletions
diff --git a/PCbuild/prepare_ssl.bat b/PCbuild/prepare_ssl.bat
index bfdac54..bd4b548 100644
--- a/PCbuild/prepare_ssl.bat
+++ b/PCbuild/prepare_ssl.bat
@@ -23,8 +23,6 @@ setlocal
if "%PCBUILD%"=="" (set PCBUILD=%~dp0)
if "%EXTERNALS_DIR%"=="" (set EXTERNALS_DIR=%PCBUILD%\..\externals)
-set OUT=
-set SRC=
set ORG_SETTING=
:CheckOpts
@@ -32,19 +30,12 @@ if "%~1"=="-h" shift & goto Usage
if "%~1"=="--certificate" (set SigningCertificate=%~2) && shift && shift & goto CheckOpts
if "%~1"=="-c" (set SigningCertificate=%~2) && shift && shift & goto CheckOpts
if "%~1"=="--organization" (set ORG_SETTING=--organization "%~2") && shift && shift && goto CheckOpts
-if "%~1"=="-i" (SET SRC=$~2) && shift && shift && goto CheckOpts
-if "%~1"=="--in" (SET SRC=$~2) && shift && shift && goto CheckOpts
-if "%~1"=="-o" (set OUT=$~2) && shift && shift && goto CheckOpts
-if "%~1"=="--out" (set OUT=$~2) && shift && shift && goto CheckOpts
if "%~1"=="" goto Build
echo Unrecognized option: %1
goto Usage
:Build
-if not defined SRC (echo --in directory is required & exit /b 1)
-if not defined OUT (echo --out directory is required & exit /b 1)
-
call "%PCBUILD%\find_msbuild.bat" %MSBUILD%
if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)