mirror of https://github.com/acidanthera/audk.git
BaseTools: Fix the issue in VS2017/VS2019 setting
edksetup.bat VS2017 should set VS2017 only. But now, it will set VS2017/VS2019 both. This patch corrects it. Signed-off-by: Liming Gao <liming.gao@intel.com> Cc: Bob Feng <bob.c.feng@intel.com> Cc: Yuwei Chen <yuwei.chen@intel.com> Reviewed-by: Bob Feng <bob.c.feng@intel.com>
This commit is contained in:
parent
24758e993a
commit
7f7f511c5a
|
@ -167,6 +167,8 @@ if not defined WINSDK_PATH_FOR_RC_EXE (
|
|||
)
|
||||
)
|
||||
|
||||
if /I "%1"=="VS2017" goto SetWinDDK
|
||||
|
||||
:SetVS2019
|
||||
if not defined VS160COMNTOOLS (
|
||||
@REM clear two envs so that vcvars32.bat can run successfully.
|
||||
|
@ -226,6 +228,8 @@ if not defined WINSDK_PATH_FOR_RC_EXE (
|
|||
)
|
||||
)
|
||||
|
||||
if /I "%1"=="VS2019" goto SetWinDDK
|
||||
|
||||
:SetWinDDK
|
||||
if not defined WINDDK3790_PREFIX (
|
||||
set WINDDK3790_PREFIX=C:\WINDDK\3790.1830\bin\
|
||||
|
|
Loading…
Reference in New Issue