From: Yonghong Zhu Date: Thu, 22 Feb 2018 02:30:41 +0000 (+0800) Subject: BaseTools: Add WindowsLike path in front of PATH Env X-Git-Tag: edk2-stable201903~2353 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=ffcec664ca2d97066f5f47f7e3abd85171f91641 BaseTools: Add WindowsLike path in front of PATH Env Original BaseTools source build append WindowsLike path to PATH Env, while WINDDK installation has a "build.exe", if user place WINDDK folder to PATH either during WINDDK installation or manually, it will block the BaseTools' build.bat. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yonghong Zhu Reviewed-by: Liming Gao --- diff --git a/BaseTools/toolsetup.bat b/BaseTools/toolsetup.bat index 51c276060d..562f9932ff 100755 --- a/BaseTools/toolsetup.bat +++ b/BaseTools/toolsetup.bat @@ -317,7 +317,7 @@ goto end echo !!! WARNING !!! PYTHON_FREEZER_PATH environment variable is not set. echo Setup environment to run Python scripts directly. echo. - set "PATH=%PATH%;%BASE_TOOLS_PATH%\BinWrappers\WindowsLike" + set "PATH=%BASE_TOOLS_PATH%\BinWrappers\WindowsLike;%PATH%" ) set BASETOOLS_PYTHON_SOURCE=%BASE_TOOLS_PATH%\Source\Python