From 426b69830efff788f2c17a4b920a84d6e08739c8 Mon Sep 17 00:00:00 2001 From: Leif Lindholm Date: Tue, 9 Jul 2024 13:17:25 +0100 Subject: BaseTools: change non-ASCII characters in LinuxGcc5ToolChain.py Commit ea56fa3d4706 ("BaseTools: Enable RISC-V architecture for RISC-V EDK2 CI") introduced a UTF-8 NBSP (0xc2a0) inside a comment block otherwise copied identically from pre-existing architectures. This was clearly unintentional and confuses things when looking for which files contain UTF-8 encodings, so change it to good old 0x20. Signed-off-by: Leif Lindholm --- BaseTools/Plugin/LinuxGcc5ToolChain/LinuxGcc5ToolChain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'BaseTools') diff --git a/BaseTools/Plugin/LinuxGcc5ToolChain/LinuxGcc5ToolChain.py b/BaseTools/Plugin/LinuxGcc5ToolChain/LinuxGcc5ToolChain.py index dab7a87997..57866a5159 100644 --- a/BaseTools/Plugin/LinuxGcc5ToolChain/LinuxGcc5ToolChain.py +++ b/BaseTools/Plugin/LinuxGcc5ToolChain/LinuxGcc5ToolChain.py @@ -99,7 +99,7 @@ class LinuxGcc5ToolChain(IUefiBuildPlugin): return 0 def _check_riscv64(self): - # now check for install dir.  If set then set the Prefix + # now check for install dir. If set then set the Prefix install_path = shell_environment.GetEnvironment( ).get_shell_var("GCC5_RISCV64_INSTALL") if install_path is None: -- cgit v1.2.3