diff options
author | Andy Polyakov <appro@openssl.org> | 2018-02-23 17:24:41 +0100 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2018-02-24 14:17:24 +0100 |
commit | 441bcafd865947474741a71fea49fc5d078b6532 (patch) | |
tree | 1caf878aa41339e2282088103e9e80565303cac7 /appveyor.yml | |
parent | 6afed267db47a8aa604a3a9e78ac72efa02363df (diff) | |
download | openssl-new-441bcafd865947474741a71fea49fc5d078b6532.tar.gz |
appveyor.yml: omit makedepend step.
makedepend makes lesser sense in a throw-away build like CI, but
it spares some computational time, because with MSVC it takes
separate per-file compiler invocation.
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5452)
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index b3165d59d6..5074a3116c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -22,9 +22,9 @@ before_build: } - ps: >- If ($env:Configuration -Match "shared") { - $env:SHARED="" + $env:SHARED="no-makedepend" } Else { - $env:SHARED="no-shared" + $env:SHARED="no-shared no-makedepend" } - ps: $env:VSCOMNTOOLS=(Get-Content ("env:VS" + "$env:VSVER" + "0COMNTOOLS")) - call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM% |