summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/Python/AutoGen/GenMake.py
diff options
context:
space:
mode:
authorBob Feng <bob.c.feng@intel.com>2020-02-07 16:45:18 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2020-02-09 09:29:02 +0000
commitb34ed98694f053bb70d8dbe11240accf06ac23ce (patch)
tree932890514ff9d6dc82e5bc5015eaab9a9fdca6d9 /BaseTools/Source/Python/AutoGen/GenMake.py
parentc10f7f77b0ef45bc7fdc15240a741b7c499d88c6 (diff)
downloadedk2-b34ed98694f053bb70d8dbe11240accf06ac23ce.tar.gz
edk2-b34ed98694f053bb70d8dbe11240accf06ac23ce.tar.bz2
edk2-b34ed98694f053bb70d8dbe11240accf06ac23ce.zip
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>
Diffstat (limited to 'BaseTools/Source/Python/AutoGen/GenMake.py')
-rwxr-xr-xBaseTools/Source/Python/AutoGen/GenMake.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/AutoGen/GenMake.py b/BaseTools/Source/Python/AutoGen/GenMake.py
index ba199c1aa7..9ae09c47ca 100755
--- a/BaseTools/Source/Python/AutoGen/GenMake.py
+++ b/BaseTools/Source/Python/AutoGen/GenMake.py
@@ -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]