diff options
author | Yunhua Feng <yunhuax.feng@intel.com> | 2018-04-25 08:46:36 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2018-04-26 14:49:56 +0800 |
commit | 4085777757096075e2b22588139ddf0ae1ccc5c7 (patch) | |
tree | 30bbc8e100f461ab4c86193be15d68ccc7db8361 /BaseTools/Source/Python/AutoGen/AutoGen.py | |
parent | 34a24786ca9eebe518d516a5804e7a7d2333a15f (diff) | |
download | edk2-4085777757096075e2b22588139ddf0ae1ccc5c7.tar.gz edk2-4085777757096075e2b22588139ddf0ae1ccc5c7.tar.bz2 edk2-4085777757096075e2b22588139ddf0ae1ccc5c7.zip |
BaseTools: Fix one invalid change in 6be94743
Roll back one change in 6be94743, it was updated incorrect.
Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Yunhua Feng <yunhuax.feng@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/AutoGen/AutoGen.py')
-rw-r--r-- | BaseTools/Source/Python/AutoGen/AutoGen.py | 2 |
1 files changed, 1 insertions, 1 deletions
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
|