diff options
author | Dionna Glaze <dionnaglaze@google.com> | 2024-12-09 18:42:33 +0000 |
---|---|---|
committer | Liming Gao <gaoliming@byosoft.com.cn> | 2024-12-11 09:00:21 +0800 |
commit | 74ac8cc0e81272b52f66b3e259e497fa628ab49d (patch) | |
tree | f31e799752c7a59341fb59513919a49e4749bf33 /BaseTools/Source/Python/AutoGen | |
parent | aca75d3c08674dfa85f00100edf85c67476e333d (diff) | |
download | edk2-74ac8cc0e81272b52f66b3e259e497fa628ab49d.tar.gz edk2-74ac8cc0e81272b52f66b3e259e497fa628ab49d.tar.bz2 edk2-74ac8cc0e81272b52f66b3e259e497fa628ab49d.zip |
BaseTools: Typo fixes
Some in error messages, some in local variable names.
Signed-off-by: Dionna Glaze <dionnaglaze@google.com>
Diffstat (limited to 'BaseTools/Source/Python/AutoGen')
-rw-r--r-- | BaseTools/Source/Python/AutoGen/PlatformAutoGen.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BaseTools/Source/Python/AutoGen/PlatformAutoGen.py b/BaseTools/Source/Python/AutoGen/PlatformAutoGen.py index dac81454a9..e80203dce2 100644 --- a/BaseTools/Source/Python/AutoGen/PlatformAutoGen.py +++ b/BaseTools/Source/Python/AutoGen/PlatformAutoGen.py @@ -190,9 +190,9 @@ class PlatformAutoGen(AutoGen): Ma.CreateMakeFile(CreateModuleMakeFile, FfsCommand[key])
else:
Ma.CreateMakeFile(CreateModuleMakeFile)
- self.CreateLibModuelDirs()
+ self.CreateLibModuleDirs()
- def CreateLibModuelDirs(self):
+ def CreateLibModuleDirs(self):
# No need to create makefile for the platform more than once.
if self.MakeFileName:
return
|