Reviewed-by: Liming Gao <[email protected]> > -----Original Message----- > From: Feng, Bob C <[email protected]> > Sent: Friday, February 7, 2020 4:42 PM > To: [email protected]; [email protected] > Cc: Feng, Bob C <[email protected]>; Dong, Guo <[email protected]>; Gao, > Liming <[email protected]> > Subject: [Patch 1/1] BaseTools: Fixed a Incremental build issue > > From: Bob Feng <[email protected]> > > The .map file is not update to FFS_OUTPUT_DIR folder > in the incremental build. > > Signed-off-by: Guo Dong <[email protected]> > Signed-off-by: Bob Feng <[email protected]> > Cc: Liming Gao <[email protected]> > --- > BaseTools/Source/Python/AutoGen/GenMake.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/BaseTools/Source/Python/AutoGen/GenMake.py > b/BaseTools/Source/Python/AutoGen/GenMake.py > index ba199c1aa73d..9ae09c47caf8 100755 > --- a/BaseTools/Source/Python/AutoGen/GenMake.py > +++ b/BaseTools/Source/Python/AutoGen/GenMake.py > @@ -718,11 +718,11 @@ cleanlib: > Src = self.ReplaceMacro(Src) > Dst = self.ReplaceMacro(Dst) > 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] > for index, Str in enumerate(FfsCmdList): > if '-o' == Str: > -- > 2.18.0.windows.1
-=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#54031): https://edk2.groups.io/g/devel/message/54031 Mute This Topic: https://groups.io/mt/71047523/21656 Group Owner: [email protected] Unsubscribe: https://edk2.groups.io/g/devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
