From: Jay Satiro Date: Sun, 2 Nov 2014 06:35:41 +0000 (-0500) Subject: build-openssl.bat: Fix x64 release build X-Git-Tag: curl-7_39_0~28 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=80c5ae1d0e1ef5270225f85dbc7b7c3cb3084f4c;p=curl build-openssl.bat: Fix x64 release build Prior to this change if x64 release was specified a failed attempt was made to build x86 release instead. --- diff --git a/projects/build-openssl.bat b/projects/build-openssl.bat index 5bd2200f8..3703a3f2d 100644 --- a/projects/build-openssl.bat +++ b/projects/build-openssl.bat @@ -156,7 +156,7 @@ rem *************************************************************************** set OUTDIR=build\Win64\%VC_DESC% if not exist %OUTDIR% md %OUTDIR% - if "%BUILD_CONFIG%" == "release" goto x86release + if "%BUILD_CONFIG%" == "release" goto x64release :x64debug rem Configuring 64-bit Debug Build