diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2015-04-02 17:21:09 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-04-02 17:21:09 +0200 |
commit | e2a9ebb32178d8ac251cea70c4bb681ec478c6c1 (patch) | |
tree | 1a20bd1abd5fff5c6a4f20e05449355626075ee8 /projects | |
parent | 0b5efa57ad7118735659542c11e725666447bf5f (diff) | |
download | curl-e2a9ebb32178d8ac251cea70c4bb681ec478c6c1.tar.gz |
build-openssl.bat: Fix mixed line endings
Use LF not CRLF, throughout. msysgit will only convert a file to CRLF
on checkout if it's not mixed.
Diffstat (limited to 'projects')
-rw-r--r-- | projects/build-openssl.bat | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/projects/build-openssl.bat b/projects/build-openssl.bat index 24410dc1b..207ecf8bf 100644 --- a/projects/build-openssl.bat +++ b/projects/build-openssl.bat @@ -106,12 +106,12 @@ rem *************************************************************************** if not exist "%PF%\%VC_PATH%" goto novc rem Check we have Perl installed - echo %PATH% | findstr /I /C:"\Perl" 1>nul
- if errorlevel 1 (
- if not exist "%SystemDrive%\Perl" (
- if not exist "%SystemDrive%\Perl64" goto noperl
- )
- )
+ echo %PATH% | findstr /I /C:"\Perl" 1>nul + if errorlevel 1 ( + if not exist "%SystemDrive%\Perl" ( + if not exist "%SystemDrive%\Perl64" goto noperl + ) + ) rem Check the start directory exists if not exist "%START_DIR%" goto noopenssl @@ -164,7 +164,7 @@ rem *************************************************************************** set OUTDIR=build\Win64\%VC_DESC% if not exist %OUTDIR% md %OUTDIR% - if "%BUILD_CONFIG%" == "release" goto x64release
+ if "%BUILD_CONFIG%" == "release" goto x64release :x64debug rem Configuring 64-bit Debug Build |