diff options
author | Feng, Bob C <bob.c.feng@intel.com> | 2019-02-03 23:22:26 +0800 |
---|---|---|
committer | Feng, Bob C <bob.c.feng@intel.com> | 2019-02-18 09:11:47 +0800 |
commit | c196d1d129ad7567f578e155c18e71ae62f9b2ad (patch) | |
tree | 0c065ba7e6030677b0a4e17ea2fb64a1e260dd10 /BaseTools/Source/Python/Eot/EotMain.py | |
parent | 8059cd2483f95f7fd021b0e93b28d90f932fc9f9 (diff) | |
download | edk2-c196d1d129ad7567f578e155c18e71ae62f9b2ad.tar.gz edk2-c196d1d129ad7567f578e155c18e71ae62f9b2ad.tar.bz2 edk2-c196d1d129ad7567f578e155c18e71ae62f9b2ad.zip |
BaseTools: Fixed a build report issue.
Generate report fail when -Y EXECUTION_ORDER in build command.
This patch is going to fix this issue.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/Eot/EotMain.py')
-rw-r--r-- | BaseTools/Source/Python/Eot/EotMain.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Eot/EotMain.py b/BaseTools/Source/Python/Eot/EotMain.py index e4359c5015..56aa48d2a1 100644 --- a/BaseTools/Source/Python/Eot/EotMain.py +++ b/BaseTools/Source/Python/Eot/EotMain.py @@ -21,7 +21,8 @@ import Eot.EotGlobalData as EotGlobalData from optparse import OptionParser
from Common.StringUtils import NormPath
from Common import BuildToolError
-from Common.Misc import GuidStructureStringToGuidString, sdict
+from Common.Misc import GuidStructureStringToGuidString
+from collections import OrderedDict as sdict
from Eot.Parser import *
from Eot.InfParserLite import EdkInfParser
from Common.StringUtils import GetSplitValueList
|