mirror of https://github.com/acidanthera/audk.git
BaseTools: Fixed a Incremental build issue
The .map file is not update to FFS_OUTPUT_DIR folder in the incremental build. Signed-off-by: Guo Dong <guo.dong@intel.com> Signed-off-by: Bob Feng <bob.c.feng@intel.com> Cc: Liming Gao <liming.gao@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
c10f7f77b0
commit
b34ed98694
|
@ -720,7 +720,7 @@ cleanlib:
|
|||
if Dst not in self.ResultFileList:
|
||||
self.ResultFileList.append(Dst)
|
||||
if '%s :' %(Dst) not in self.BuildTargetList:
|
||||
self.BuildTargetList.append("%s :" %(Dst))
|
||||
self.BuildTargetList.append("%s : %s" %(Dst,Src))
|
||||
self.BuildTargetList.append('\t' + self._CP_TEMPLATE_[self._FileType] %{'Src': Src, 'Dst': Dst})
|
||||
|
||||
FfsCmdList = Cmd[0]
|
||||
|
|
Loading…
Reference in New Issue