diff options
author | Jaben Carsey <jaben.carsey@intel.com> | 2018-11-16 23:40:04 +0800 |
---|---|---|
committer | BobCF <bob.c.feng@intel.com> | 2018-12-06 17:11:24 +0800 |
commit | bc39c5cbea30b53c35a32150431bb7ea05a3238d (patch) | |
tree | 78fd7f91b47f437c4f7b78be4ebaa35c50f116d5 /BaseTools/Source/Python/Workspace/DscBuildData.py | |
parent | ea55e37c369ac5b9dc1a6fcc647bd3fa20cb05b1 (diff) | |
download | edk2-bc39c5cbea30b53c35a32150431bb7ea05a3238d.tar.gz edk2-bc39c5cbea30b53c35a32150431bb7ea05a3238d.tar.bz2 edk2-bc39c5cbea30b53c35a32150431bb7ea05a3238d.zip |
BaseTools: create and use a standard shared variable for '*'
add a variable for the string '*' and then use it instead of lots of '*'
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com>
Reviewed-by : Bob Feng <bob.c.feng@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/Workspace/DscBuildData.py')
-rw-r--r-- | BaseTools/Source/Python/Workspace/DscBuildData.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/BaseTools/Source/Python/Workspace/DscBuildData.py b/BaseTools/Source/Python/Workspace/DscBuildData.py index 11aa63fb26..22cbbb119a 100644 --- a/BaseTools/Source/Python/Workspace/DscBuildData.py +++ b/BaseTools/Source/Python/Workspace/DscBuildData.py @@ -2315,11 +2315,11 @@ class DscBuildData(PlatformBuildClassObject): continue
if Attr != "FLAGS":
continue
- if Target == "*" or Target == self._Target:
- if Tag == "*" or Tag == self._Toolchain:
+ if Target == TAB_STAR or Target == self._Target:
+ if Tag == TAB_STAR or Tag == self._Toolchain:
if 'COMMON' not in BuildOptions:
BuildOptions['COMMON'] = set()
- if Arch == "*":
+ if Arch == TAB_STAR:
BuildOptions['COMMON'].add(self.BuildOptions[Options])
if Arch in self.SupArchList:
if Arch not in BuildOptions:
|