mirror of https://github.com/acidanthera/audk.git
BaseTools:build break if the Path contains SingleFile.Ext
BZ:https://bugzilla.tianocore.org/show_bug.cgi?id=1325 if SingleFile.Path = "/foo/bar.Sap/yada/source.S" and SingleFile.Ext = ".S". Then key would end up "/foo/bar" instead of "/foo/bar.Sap/yada/source" as intended. Cc: Bob Feng <bob.c.feng@intel.com> Cc: Liming Gao <liming.gao@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Zhiju.Fan <zhijux.fan@intel.com> Reviewed-by: Bob Feng <bob.c.feng@intel.com>
This commit is contained in:
parent
842695d2ff
commit
dd1988cf01
|
@ -3019,7 +3019,7 @@ class ModuleAutoGen(AutoGen):
|
|||
self.BuildOption
|
||||
for SingleFile in FileList:
|
||||
if self.BuildRuleOrder and SingleFile.Ext in self.BuildRuleOrder and SingleFile.Ext in self.BuildRules:
|
||||
key = SingleFile.Path.split(SingleFile.Ext)[0]
|
||||
key = SingleFile.Path.rsplit(SingleFile.Ext,1)[0]
|
||||
if key in Order_Dict:
|
||||
Order_Dict[key].append(SingleFile.Ext)
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue