diff options
author | Feng, Bob C <bob.c.feng@intel.com> | 2019-02-16 22:51:51 +0800 |
---|---|---|
committer | Feng, Bob C <bob.c.feng@intel.com> | 2019-02-19 20:32:42 +0800 |
commit | 9108039558b5e33c7ba07733b4665859e85109cd (patch) | |
tree | c594dd1ec68c521f8174ebe4cd549ecb09cf6b12 /BaseTools/Source/Python/Workspace | |
parent | dfaffc6967d4bc59414bf64788ca81aabba0a8da (diff) | |
download | edk2-9108039558b5e33c7ba07733b4665859e85109cd.tar.gz edk2-9108039558b5e33c7ba07733b4665859e85109cd.tar.bz2 edk2-9108039558b5e33c7ba07733b4665859e85109cd.zip |
BaseTools: Add MaxSizeUserSet to Pcd deepcopy function
MaxSizeUserSet is missing in Pcd deepcopy function.
This patch is to add it back to Pcd deepcopy function.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/Workspace')
-rw-r--r-- | BaseTools/Source/Python/Workspace/BuildClassObject.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/BaseTools/Source/Python/Workspace/BuildClassObject.py b/BaseTools/Source/Python/Workspace/BuildClassObject.py index 1c2385f761..b82af49236 100644 --- a/BaseTools/Source/Python/Workspace/BuildClassObject.py +++ b/BaseTools/Source/Python/Workspace/BuildClassObject.py @@ -222,6 +222,7 @@ class PcdClassObject(object): new_pcd.DefaultValue = self.DefaultValue
new_pcd.TokenValue = self.TokenValue
new_pcd.MaxDatumSize = self.MaxDatumSize
+ new_pcd.MaxSizeUserSet = self.MaxSizeUserSet
new_pcd.Phase = self.Phase
new_pcd.Pending = self.Pending
|