diff options
author | Rebecca Cran <rebecca@bsdio.com> | 2021-06-13 11:35:06 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-06-25 02:27:47 +0000 |
commit | 333a8661066bd9d3a01518bdc5443db233977bcc (patch) | |
tree | 390ae924fe1952d07b791c5b07891483485faa3c /BaseTools | |
parent | 19a541d70e0748af69d3b09d55a1415762c8d749 (diff) | |
download | edk2-333a8661066bd9d3a01518bdc5443db233977bcc.tar.gz edk2-333a8661066bd9d3a01518bdc5443db233977bcc.tar.bz2 edk2-333a8661066bd9d3a01518bdc5443db233977bcc.zip |
BaseTools: Remove check for Split.exe in toolset.bat
Split is now a Python tool, so BaseTools\Bin\Win32\Split.exe no longer
exists. Remove the check for it from toolsetup.bat to prevent the
erroneous claim that the binary C tools are missing.
Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
Reviewed-by: Bob Feng <bob.c.feng@intel.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Diffstat (limited to 'BaseTools')
-rwxr-xr-x | BaseTools/toolsetup.bat | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/BaseTools/toolsetup.bat b/BaseTools/toolsetup.bat index 4b5256ab6e..a766a69f08 100755 --- a/BaseTools/toolsetup.bat +++ b/BaseTools/toolsetup.bat @@ -299,7 +299,6 @@ IF NOT EXIST "%EDK_TOOLS_BIN%\GenFfs.exe" goto check_c_tools IF NOT EXIST "%EDK_TOOLS_BIN%\GenFv.exe" goto check_c_tools
IF NOT EXIST "%EDK_TOOLS_BIN%\GenFw.exe" goto check_c_tools
IF NOT EXIST "%EDK_TOOLS_BIN%\GenSec.exe" goto check_c_tools
-IF NOT EXIST "%EDK_TOOLS_BIN%\Split.exe" goto check_c_tools
IF NOT EXIST "%EDK_TOOLS_BIN%\TianoCompress.exe" goto check_c_tools
IF NOT EXIST "%EDK_TOOLS_BIN%\VfrCompile.exe" goto check_c_tools
IF NOT EXIST "%EDK_TOOLS_BIN%\VolInfo.exe" goto check_c_tools
|