From 2f2c51acfb70efe3dd02022ca09dd853601d8acd Mon Sep 17 00:00:00 2001 From: "Feng, Bob C" Date: Fri, 15 Mar 2019 22:59:29 +0800 Subject: BaseTools: Remove the logic SourceOverridePath BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1350 SOURCE_OVERRIDE_PATH is for EDK component INF files. The corresponding logic should be removed. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Bob Feng Cc: Liming Gao Reviewed-by: Liming Gao --- BaseTools/Source/Python/Eot/InfParserLite.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'BaseTools/Source/Python/Eot/InfParserLite.py') diff --git a/BaseTools/Source/Python/Eot/InfParserLite.py b/BaseTools/Source/Python/Eot/InfParserLite.py index cec083330b..bc575a642c 100644 --- a/BaseTools/Source/Python/Eot/InfParserLite.py +++ b/BaseTools/Source/Python/Eot/InfParserLite.py @@ -40,11 +40,8 @@ class EdkInfParser(object): # @param Filename: INF file name # @param Database: Eot database # @param SourceFileList: A list for all source file belonging this INF file - # @param SourceOverridePath: Override path for source file - # @param Edk_Source: Environment variable EDK_SOURCE - # @param Efi_Source: Environment variable EFI_SOURCE # - def __init__(self, Filename = None, Database = None, SourceFileList = None, SourceOverridePath = None, Edk_Source = None, Efi_Source = None): + def __init__(self, Filename = None, Database = None, SourceFileList = None): self.Identification = Identification() self.Sources = [] self.Macros = {} @@ -53,7 +50,6 @@ class EdkInfParser(object): self.TblFile = Database.TblFile self.TblInf = Database.TblInf self.FileID = -1 - self.SourceOverridePath = SourceOverridePath # Load Inf file if filename is not None if Filename is not None: -- cgit v1.2.3