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)
This commit is contained in:
Andy Polyakov 2018-02-23 17:24:41 +01:00
parent 6afed267db
commit 441bcafd86

View file

@ -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%