diff options
author | Yingke Liu <yingke.d.liu@intel.com> | 2015-06-23 06:59:45 +0000 |
---|---|---|
committer | yingke <yingke@Edk2> | 2015-06-23 06:59:45 +0000 |
commit | 37fe82ee80c62bd8838ab22078e44f6269f812cc (patch) | |
tree | be8c026513cbcf718eea65355f788d5ec1350eb5 /BaseTools | |
parent | 45265a86142fe8259d2b2ba279b1b7b0da814993 (diff) | |
download | edk2-platforms-37fe82ee80c62bd8838ab22078e44f6269f812cc.tar.xz |
BaseTools: Fixed a bug that Build Report always uses DEC default value for VPD PCD.
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@17681 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BaseTools')
-rw-r--r-- | BaseTools/Source/Python/Workspace/WorkspaceDatabase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Workspace/WorkspaceDatabase.py b/BaseTools/Source/Python/Workspace/WorkspaceDatabase.py index 6c1d518f65..9da6ac7a41 100644 --- a/BaseTools/Source/Python/Workspace/WorkspaceDatabase.py +++ b/BaseTools/Source/Python/Workspace/WorkspaceDatabase.py @@ -1142,7 +1142,7 @@ class DscBuildData(PlatformBuildClassObject): TokenSpaceGuid,
self._PCD_TYPE_STRING_[Type],
'',
- '',
+ InitialValue,
'',
MaxDatumSize,
{SkuName : SkuInfo},
|