diff options
author | Yingke Liu <yingke.d.liu@intel.com> | 2015-06-11 05:21:59 +0000 |
---|---|---|
committer | yingke <yingke@Edk2> | 2015-06-11 05:21:59 +0000 |
commit | e63ec1beac46991176b18c859372f0f16fb97b13 (patch) | |
tree | ac28eb19e581e082c894a4caceefb8e0ccafb76d /BaseTools/Source/Python | |
parent | aeaaf754ee6f2435b37e57f7cd9940d259e12d09 (diff) | |
download | edk2-platforms-e63ec1beac46991176b18c859372f0f16fb97b13.tar.xz |
BaseTools: Fixed an error reported during generating report.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Yingke Liu <yingke.d.liu@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17623 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BaseTools/Source/Python')
-rw-r--r-- | BaseTools/Source/Python/build/BuildReport.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/BaseTools/Source/Python/build/BuildReport.py b/BaseTools/Source/Python/build/BuildReport.py index 327d5a5347..264607b003 100644 --- a/BaseTools/Source/Python/build/BuildReport.py +++ b/BaseTools/Source/Python/build/BuildReport.py @@ -1237,10 +1237,10 @@ class FdRegionReport(object): #
# Collect PCDs defined in DSC common section
#
- for Platform in Wa.BuildDatabase.WorkspaceDb.PlatformList:
- for (TokenCName, TokenSpaceGuidCName) in Platform.Pcds:
- DscDefaultValue = Platform.Pcds[(TokenCName, TokenSpaceGuidCName)].DefaultValue
- PlatformPcds[(TokenCName, TokenSpaceGuidCName)] = DscDefaultValue
+ Platform = Wa.BuildDatabase[Wa.MetaFile, 'COMMON']
+ for (TokenCName, TokenSpaceGuidCName) in Platform.Pcds:
+ DscDefaultValue = Platform.Pcds[(TokenCName, TokenSpaceGuidCName)].DefaultValue
+ PlatformPcds[(TokenCName, TokenSpaceGuidCName)] = DscDefaultValue
#
# Add PEI and DXE a priori files GUIDs defined in PI specification.
|