diff options
author | Jaben Carsey <jaben.carsey@intel.com> | 2018-06-27 08:12:34 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2018-06-28 08:46:49 +0800 |
commit | 2b5c643ae8f7e72a56deeacead6b5302a076d329 (patch) | |
tree | ab998607078613278eda36ecd69a0a09a5e64661 /BaseTools/Source/Python/Common/GlobalData.py | |
parent | 975478f6bb22668efae311eb3f7406e1f18411c2 (diff) | |
download | edk2-2b5c643ae8f7e72a56deeacead6b5302a076d329.tar.gz edk2-2b5c643ae8f7e72a56deeacead6b5302a076d329.tar.bz2 edk2-2b5c643ae8f7e72a56deeacead6b5302a076d329.zip |
BaseTools: Move variable out of Global
Move single use list from GlobalData (gTempInfs) into the file that uses it as _TempInfs
Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/Common/GlobalData.py')
-rw-r--r-- | BaseTools/Source/Python/Common/GlobalData.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/BaseTools/Source/Python/Common/GlobalData.py b/BaseTools/Source/Python/Common/GlobalData.py index e3131b86cc..afb3d8f020 100644 --- a/BaseTools/Source/Python/Common/GlobalData.py +++ b/BaseTools/Source/Python/Common/GlobalData.py @@ -93,13 +93,6 @@ gIgnoreSource = False #
gFdfParser = None
-#
-# If a module is built more than once with different PCDs or library classes
-# a temporary INF file with same content is created, the temporary file is removed
-# when build exits.
-#
-gTempInfs = []
-
BuildOptionPcd = []
#
|