mirror of
https://github.com/acidanthera/audk.git
synced 2025-09-24 18:27:49 +02:00
BaseTools/GenFds: Fix reloc-stripped file name typo
This commit is contained in:
parent
e11f00a64c
commit
c19c448b0f
@ -783,7 +783,7 @@ class FfsInfStatement(FfsInfStatementClassObject):
|
|||||||
if not os.path.exists(FileBeforeStrip) or \
|
if not os.path.exists(FileBeforeStrip) or \
|
||||||
(os.path.getmtime(File) > os.path.getmtime(FileBeforeStrip)):
|
(os.path.getmtime(File) > os.path.getmtime(FileBeforeStrip)):
|
||||||
CopyLongFilePath(File, FileBeforeStrip)
|
CopyLongFilePath(File, FileBeforeStrip)
|
||||||
StrippedFile = os.path.join(self.OutputPath, ModuleName + '.stipped')
|
StrippedFile = os.path.join(self.OutputPath, ModuleName + '.stripped')
|
||||||
GenFdsGlobalVariable.GenerateFirmwareImage(
|
GenFdsGlobalVariable.GenerateFirmwareImage(
|
||||||
StrippedFile,
|
StrippedFile,
|
||||||
File,
|
File,
|
||||||
@ -817,7 +817,7 @@ class FfsInfStatement(FfsInfStatementClassObject):
|
|||||||
(os.path.getmtime(GenSecInputFile) > os.path.getmtime(FileBeforeStrip)):
|
(os.path.getmtime(GenSecInputFile) > os.path.getmtime(FileBeforeStrip)):
|
||||||
CopyLongFilePath(GenSecInputFile, FileBeforeStrip)
|
CopyLongFilePath(GenSecInputFile, FileBeforeStrip)
|
||||||
|
|
||||||
StrippedFile = os.path.join(self.OutputPath, ModuleName + '.stipped')
|
StrippedFile = os.path.join(self.OutputPath, ModuleName + '.stripped')
|
||||||
GenFdsGlobalVariable.GenerateFirmwareImage(
|
GenFdsGlobalVariable.GenerateFirmwareImage(
|
||||||
StrippedFile,
|
StrippedFile,
|
||||||
GenSecInputFile,
|
GenSecInputFile,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user