From 4085777757096075e2b22588139ddf0ae1ccc5c7 Mon Sep 17 00:00:00 2001 From: Yunhua Feng Date: Wed, 25 Apr 2018 08:46:36 +0800 Subject: [PATCH] BaseTools: Fix one invalid change in 6be94743 Roll back one change in 6be94743, it was updated incorrect. Cc: Liming Gao Cc: Yonghong Zhu Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yunhua Feng Reviewed-by: Yonghong Zhu --- BaseTools/Source/Python/AutoGen/AutoGen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseTools/Source/Python/AutoGen/AutoGen.py b/BaseTools/Source/Python/AutoGen/AutoGen.py index 7b37dd2561..dc82075c58 100644 --- a/BaseTools/Source/Python/AutoGen/AutoGen.py +++ b/BaseTools/Source/Python/AutoGen/AutoGen.py @@ -3915,7 +3915,7 @@ class ModuleAutoGen(AutoGen): return # Skip the following code for modules without any binary files - if not self.BinaryFileList: + if self.BinaryFileList: return ### TODO: How to handles mixed source and binary modules -- 2.39.2