mirror of https://github.com/acidanthera/audk.git
BaseTools: Pcd not used info should not in Module PCD section
Pcds in Conditional Directives and Pcds not used are Platform Level info, it should not display in Module PCD Section. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
175a4b5db3
commit
b91b8ee4c9
|
@ -877,6 +877,7 @@ class PcdReport(object):
|
|||
self.DscPcdDefault[(TokenCName, TokenSpaceGuidCName)] = DscDefaultValue
|
||||
|
||||
def GenerateReport(self, File, ModulePcdSet):
|
||||
if not ModulePcdSet:
|
||||
if self.ConditionalPcds:
|
||||
self.GenerateReportDetail(File, ModulePcdSet, 1)
|
||||
if self.UnusedPcds:
|
||||
|
@ -904,7 +905,7 @@ class PcdReport(object):
|
|||
elif ReportSubType == 2:
|
||||
PcdDict = self.UnusedPcds
|
||||
|
||||
if ModulePcdSet is None:
|
||||
if not ModulePcdSet:
|
||||
FileWrite(File, gSectionStart)
|
||||
if ReportSubType == 1:
|
||||
FileWrite(File, "Conditional Directives used by the build system")
|
||||
|
|
Loading…
Reference in New Issue