summaryrefslogtreecommitdiffstats
path: root/BaseTools
diff options
context:
space:
mode:
authorYonghong Zhu <yonghong.zhu@intel.com>2017-09-15 16:14:17 +0800
committerYonghong Zhu <yonghong.zhu@intel.com>2017-09-19 15:27:50 +0800
commita3a4737051010a94832f7bceaa1fa414d7259da0 (patch)
tree80889aa3740e634dc457e1846f94054c563b8e32 /BaseTools
parent880ec68338541b63672ea521c0dffee181df8ede (diff)
downloadedk2-a3a4737051010a94832f7bceaa1fa414d7259da0.tar.gz
edk2-a3a4737051010a94832f7bceaa1fa414d7259da0.tar.bz2
edk2-a3a4737051010a94832f7bceaa1fa414d7259da0.zip
BaseTools: Fix a bug to correct SourceFileList
We met a case that use two microcode files in the Microcode.inf file, one is .mcb file, another is .txt file. then it cause build failure because the SourceFileList include the .txt file's output file, while this output file is still not be generated, so it cause GetFileDependency report failure. Cc: Liming Gao <liming.gao@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'BaseTools')
-rw-r--r--BaseTools/Source/Python/AutoGen/GenMake.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/BaseTools/Source/Python/AutoGen/GenMake.py b/BaseTools/Source/Python/AutoGen/GenMake.py
index 0f3ddd5dd4..942eb44cc2 100644
--- a/BaseTools/Source/Python/AutoGen/GenMake.py
+++ b/BaseTools/Source/Python/AutoGen/GenMake.py
@@ -789,8 +789,15 @@ cleanlib:
if File.Ext == '.h':
ForceIncludedFile.append(File)
SourceFileList = []
+ OutPutFileList = []
for Target in self._AutoGenObject.IntroTargetList:
SourceFileList.extend(Target.Inputs)
+ OutPutFileList.extend(Target.Outputs)
+
+ if OutPutFileList:
+ for Item in OutPutFileList:
+ if Item in SourceFileList:
+ SourceFileList.remove(Item)
self.FileDependency = self.GetFileDependency(
SourceFileList,