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>
This commit is contained in:
BobCF 2018-10-18 13:32:40 +08:00 committed by Liming Gao
parent 2855e9c330
commit 951fb2d4e5
1 changed files with 1 additions and 1 deletions

View File

@ -2288,7 +2288,7 @@ class DscBuildData(PlatformBuildClassObject):
if Target == "*" or Target == self._Target: if Target == "*" or Target == self._Target:
if Tag == "*" or Tag == self._Toolchain: if Tag == "*" or Tag == self._Toolchain:
if Arch == "*" or Arch == self.Arch: if Arch == "*":
if Tool not in BuildOptions: if Tool not in BuildOptions:
BuildOptions[Tool] = OrderedDict() BuildOptions[Tool] = OrderedDict()
if Attr != "FLAGS" or Attr not in BuildOptions[Tool] or self.BuildOptions[Options].startswith('='): if Attr != "FLAGS" or Attr not in BuildOptions[Tool] or self.BuildOptions[Options].startswith('='):