diff options
author | BobCF <bob.c.feng@intel.com> | 2018-10-18 13:32:40 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2018-10-24 22:27:05 +0800 |
commit | 951fb2d4e557c5bb0ad1b55c6610f004ee5be56b (patch) | |
tree | f437f413fb3cb364f0e45befe7ab9d80f4f56158 | |
parent | 2855e9c330cde2817d9cc9517381d5e60bcf74f5 (diff) | |
download | edk2-951fb2d4e557c5bb0ad1b55c6610f004ee5be56b.tar.gz edk2-951fb2d4e557c5bb0ad1b55c6610f004ee5be56b.tar.bz2 edk2-951fb2d4e557c5bb0ad1b55c6610f004ee5be56b.zip |
BaseTools: Remove Arch specific build options for PcdValueInit tool.
PcdValueInit tool is Arch independent, the Arch specific
build options should be removed from PcdValueInit makefile.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Bob C Feng <bob.c.feng@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
-rw-r--r-- | BaseTools/Source/Python/Workspace/DscBuildData.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Workspace/DscBuildData.py b/BaseTools/Source/Python/Workspace/DscBuildData.py index f79eec1859..22c756b7a6 100644 --- a/BaseTools/Source/Python/Workspace/DscBuildData.py +++ b/BaseTools/Source/Python/Workspace/DscBuildData.py @@ -2288,7 +2288,7 @@ class DscBuildData(PlatformBuildClassObject): if Target == "*" or Target == self._Target:
if Tag == "*" or Tag == self._Toolchain:
- if Arch == "*" or Arch == self.Arch:
+ if Arch == "*":
if Tool not in BuildOptions:
BuildOptions[Tool] = OrderedDict()
if Attr != "FLAGS" or Attr not in BuildOptions[Tool] or self.BuildOptions[Options].startswith('='):
|