summaryrefslogtreecommitdiff
path: root/BaseTools
diff options
context:
space:
mode:
authorBobCF <bob.c.feng@intel.com>2018-10-18 13:32:40 +0800
committerLiming Gao <liming.gao@intel.com>2018-10-24 22:27:05 +0800
commit951fb2d4e557c5bb0ad1b55c6610f004ee5be56b (patch)
treef437f413fb3cb364f0e45befe7ab9d80f4f56158 /BaseTools
parent2855e9c330cde2817d9cc9517381d5e60bcf74f5 (diff)
downloadedk2-951fb2d4e557c5bb0ad1b55c6610f004ee5be56b.zip
edk2-951fb2d4e557c5bb0ad1b55c6610f004ee5be56b.tar.gz
edk2-951fb2d4e557c5bb0ad1b55c6610f004ee5be56b.tar.bz2
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>
Diffstat (limited to 'BaseTools')
-rw-r--r--BaseTools/Source/Python/Workspace/DscBuildData.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Workspace/DscBuildData.py b/BaseTools/Source/Python/Workspace/DscBuildData.py
index f79eec1..22c756b 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('='):