diff options
author | Steve Holme <steve_holme@hotmail.com> | 2018-02-08 21:55:26 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2019-04-08 22:36:22 +0100 |
commit | d891702fcf24ea68285b2634faa18a44987086ac (patch) | |
tree | d4b26eef2009d7da819daa534f79d7eb8c82c94e /projects | |
parent | 8ebc42be048eb523b37b25de0e14a72cc300abc2 (diff) | |
download | curl-d891702fcf24ea68285b2634faa18a44987086ac.tar.gz |
build-openssl.bat: Fixed the BUILD_CONFIG variable not being initialised
Should the parent environment set this variable then the build might
not be performed as the user intended.
Diffstat (limited to 'projects')
-rw-r--r-- | projects/build-openssl.bat | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/projects/build-openssl.bat b/projects/build-openssl.bat index 96fccf87a..63a2fbd50 100644 --- a/projects/build-openssl.bat +++ b/projects/build-openssl.bat @@ -29,6 +29,7 @@ rem *************************************************************************** setlocal set VC_VER= set BUILD_PLATFORM= + set BUILD_CONFIG= rem Ensure we have the required arguments if /i "%~1" == "" goto syntax |