]> git.proxmox.com Git - mirror_edk2.git/commit
BaseTools/Workspace: Fix ValueChain set
authorMarvin Haeuser <Marvin.Haeuser@outlook.com>
Tue, 22 May 2018 11:48:29 +0000 (19:48 +0800)
committerYonghong Zhu <yonghong.zhu@intel.com>
Wed, 23 May 2018 05:17:51 +0000 (13:17 +0800)
commit1d4f84f9f42525356aaf25033ab541c0225b3886
treee44849707b03d9a9df1c8f761f8ba06400b136a3
parent180ac200da84785989443b06bcfa5db343c0bf7e
BaseTools/Workspace: Fix ValueChain set

Commit 88252a90d1ca7846731cd2e4e8e860454f7d97a3 changed ValueChain
from a dict to a set, but also changed the (former) key type from a
touple to two separate values, which was probably unintended and also
breaks build for packages involving Structured PCDs, because add()
only takes one argument.
This commit changes the values back to touples.

V2:
  - Removed a whitespace change.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Marvin Haeuser <Marvin.Haeuser@outlook.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
BaseTools/Source/Python/Workspace/DscBuildData.py