mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-23 21:54:27 +02:00
BaseTools: Fixed build report issue.
This patch is going to fix the regression issue by 72a1d77694d51914c0dd6aa97dbfa58634b0a4a5 After enable PCD array, the Pcd.OverrideStruct has a new key, array index, but the build report is not changed correspondingly. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Bob Feng <bob.c.feng@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
39699d078c
commit
82bfbd392a
@ -1424,9 +1424,10 @@ class PcdReport(object):
|
||||
def OverrideFieldValue(self, Pcd, OverrideStruct):
|
||||
OverrideFieldStruct = collections.OrderedDict()
|
||||
if OverrideStruct:
|
||||
for Key, Values in OverrideStruct.items():
|
||||
if Values[1] and Values[1].endswith('.dsc'):
|
||||
OverrideFieldStruct[Key] = Values
|
||||
for _, Values in OverrideStruct.items():
|
||||
for Key,value in Values.items():
|
||||
if value[1] and value[1].endswith('.dsc'):
|
||||
OverrideFieldStruct[Key] = value
|
||||
if Pcd.PcdFieldValueFromFdf:
|
||||
for Key, Values in Pcd.PcdFieldValueFromFdf.items():
|
||||
if Key in OverrideFieldStruct and Values[0] == OverrideFieldStruct[Key][0]:
|
||||
|
Loading…
x
Reference in New Issue
Block a user