BaseTools: Update incorrect variable name 'DataPile'
BZ:https://bugzilla.tianocore.org/show_bug.cgi?id=2093 The PlatformAutoGen object has a DataPipe property but no DataPile property So change the variable name 'DataPile' to 'DataPipe' in BuildReport.py This patch is going to fix that issue. Cc: Liming Gao <liming.gao@intel.com> Cc: Bob Feng <bob.c.feng@intel.com> Signed-off-by: Zhiju.Fan <zhijux.fan@intel.com> Reviewed-by: Bob Feng <bob.c.feng@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
@ -2142,7 +2142,7 @@ class PlatformReport(object):
|
|||||||
INFList = GlobalData.gFdfParser.Profile.InfDict[Pa.Arch]
|
INFList = GlobalData.gFdfParser.Profile.InfDict[Pa.Arch]
|
||||||
for InfName in INFList:
|
for InfName in INFList:
|
||||||
InfClass = PathClass(NormPath(InfName), Wa.WorkspaceDir, Pa.Arch)
|
InfClass = PathClass(NormPath(InfName), Wa.WorkspaceDir, Pa.Arch)
|
||||||
Ma = ModuleAutoGen(Wa, InfClass, Pa.BuildTarget, Pa.ToolChain, Pa.Arch, Wa.MetaFile,Pa.DataPile)
|
Ma = ModuleAutoGen(Wa, InfClass, Pa.BuildTarget, Pa.ToolChain, Pa.Arch, Wa.MetaFile, Pa.DataPipe)
|
||||||
if Ma is None:
|
if Ma is None:
|
||||||
continue
|
continue
|
||||||
if Ma not in ModuleAutoGenList:
|
if Ma not in ModuleAutoGenList:
|
||||||
|
Reference in New Issue
Block a user