diff options
Diffstat (limited to 'BaseTools/Source/Python/Workspace')
-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('='):
|