Update toolsetup.bat to call the set_vsprefix_envs.bat to set the PREFIX envs.
Cc: Liming Gao <[email protected]> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu <[email protected]> --- BaseTools/toolsetup.bat | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/BaseTools/toolsetup.bat b/BaseTools/toolsetup.bat index 17b7239..26b60d9 100755 --- a/BaseTools/toolsetup.bat +++ b/BaseTools/toolsetup.bat @@ -162,10 +162,18 @@ if not defined WORKSPACE ( echo. ) goto skip_reconfig ) +IF NOT exist "%EDK_TOOLS_PATH%\set_vsprefix_envs.bat" ( + @echo. + @echo !!! ERROR !!! The set_vsprefix_envs.bat was not found !!! + @echo. + goto end +) +call %EDK_TOOLS_PATH%\set_vsprefix_envs.bat + if not defined CONF_PATH ( set CONF_PATH=%WORKSPACE%\Conf ) if NOT exist %CONF_PATH% ( -- 2.6.1.windows.1 _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel

