From c19c448b0f03949d905d77e0e3c13db084406a03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marvin=20Ha=CC=88user?= <8659494+mhaeuser@users.noreply.github.com> Date: Mon, 1 May 2023 17:58:07 +0200 Subject: [PATCH] BaseTools/GenFds: Fix reloc-stripped file name typo --- BaseTools/Source/Python/GenFds/FfsInfStatement.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BaseTools/Source/Python/GenFds/FfsInfStatement.py b/BaseTools/Source/Python/GenFds/FfsInfStatement.py index 90ac443a02..f97171df68 100644 --- a/BaseTools/Source/Python/GenFds/FfsInfStatement.py +++ b/BaseTools/Source/Python/GenFds/FfsInfStatement.py @@ -783,7 +783,7 @@ class FfsInfStatement(FfsInfStatementClassObject): if not os.path.exists(FileBeforeStrip) or \ (os.path.getmtime(File) > os.path.getmtime(FileBeforeStrip)): CopyLongFilePath(File, FileBeforeStrip) - StrippedFile = os.path.join(self.OutputPath, ModuleName + '.stipped') + StrippedFile = os.path.join(self.OutputPath, ModuleName + '.stripped') GenFdsGlobalVariable.GenerateFirmwareImage( StrippedFile, File, @@ -817,7 +817,7 @@ class FfsInfStatement(FfsInfStatementClassObject): (os.path.getmtime(GenSecInputFile) > os.path.getmtime(FileBeforeStrip)): CopyLongFilePath(GenSecInputFile, FileBeforeStrip) - StrippedFile = os.path.join(self.OutputPath, ModuleName + '.stipped') + StrippedFile = os.path.join(self.OutputPath, ModuleName + '.stripped') GenFdsGlobalVariable.GenerateFirmwareImage( StrippedFile, GenSecInputFile,