BaseTools/AutoGen: Remove redundant copy action for binary module

Remove redundant copy action for binary module to copy binary files to output directory only when the binary module is a library

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Hess Chen <hesheng.chen@intel.com>
Reviewed-by: Yingke Liu <yingke.d.liu@Intel.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16057 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Hess Chen 2014-09-04 08:32:44 +00:00 committed by hchen30
parent 5a51ad8d20
commit 49d9b71df2
1 changed files with 2 additions and 1 deletions

View File

@ -3429,7 +3429,8 @@ class ModuleAutoGen(AutoGen):
CreatePcdDatabaseCode(self, TemplateString(), TemplateString())
return
if self.IsBinaryModule:
self.CopyBinaryFiles()
if self.IsLibrary:
self.CopyBinaryFiles()
return
if not self.IsLibrary and CreateLibraryCodeFile: