diff options
author | Leif Lindholm <quic_llindhol@quicinc.com> | 2024-07-09 13:17:25 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-07-09 13:38:55 +0000 |
commit | 426b69830efff788f2c17a4b920a84d6e08739c8 (patch) | |
tree | 655926d5f8b2986e02de905b33b41b39b9bd5cb3 /BaseTools | |
parent | 95a6892aacfef6c7862058fcdc495f6b35df9367 (diff) | |
download | edk2-426b69830efff788f2c17a4b920a84d6e08739c8.tar.gz edk2-426b69830efff788f2c17a4b920a84d6e08739c8.tar.bz2 edk2-426b69830efff788f2c17a4b920a84d6e08739c8.zip |
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 <quic_llindhol@quicinc.com>
Diffstat (limited to 'BaseTools')
-rw-r--r-- | BaseTools/Plugin/LinuxGcc5ToolChain/LinuxGcc5ToolChain.py | 2 |
1 files changed, 1 insertions, 1 deletions
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:
|