Skip to content

Commit fbe210b

Browse files
bingenitocodebytere
authored andcommitted
build: conditionally clear vcinstalldir
For scenario where target env is explicitly specified as vs2019, do not clear VCINSTALLDIR which was being cleared to handle fallback to vs2017 block when attempting to find a matching available VS. Fixes: #35856 PR-URL: #36009 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
1 parent 6a4cc43 commit fbe210b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vcbuild.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ echo Looking for Visual Studio 2019
249249
@rem VCINSTALLDIR may be set if run from a VS Command Prompt and needs to be
250250
@rem cleared first as vswhere_usability_wrapper.cmd doesn't when it fails to
251251
@rem detect the version searched for
252-
set "VCINSTALLDIR="
252+
if not defined target_env set "VCINSTALLDIR="
253253
call tools\msvs\vswhere_usability_wrapper.cmd "[16.0,17.0)"
254254
if "_%VCINSTALLDIR%_" == "__" goto msbuild-not-found
255255
set "WIXSDKDIR=%WIX%\SDK\VS2017"

0 commit comments

Comments
 (0)