From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mx.groups.io with SMTP id smtpd.web09.2285.1581067784736958666 for ; Fri, 07 Feb 2020 01:29:45 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.151, mailfrom: liming.gao@intel.com) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 07 Feb 2020 01:29:44 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,412,1574150400"; d="scan'208";a="255366892" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by fmsmga004.fm.intel.com with ESMTP; 07 Feb 2020 01:29:43 -0800 Received: from shsmsx601.ccr.corp.intel.com (10.109.6.141) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.439.0; Fri, 7 Feb 2020 01:29:43 -0800 Received: from shsmsx606.ccr.corp.intel.com (10.109.6.216) by SHSMSX601.ccr.corp.intel.com (10.109.6.141) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Fri, 7 Feb 2020 17:29:41 +0800 Received: from shsmsx606.ccr.corp.intel.com ([10.109.6.216]) by SHSMSX606.ccr.corp.intel.com ([10.109.6.216]) with mapi id 15.01.1713.004; Fri, 7 Feb 2020 17:29:41 +0800 From: "Liming Gao" To: "Feng, Bob C" , "edk2-devel@lists.01.org" , "devel@edk2.groups.io" CC: "Dong, Guo" Subject: Re: [Patch 1/1] BaseTools: Fixed a Incremental build issue Thread-Topic: [Patch 1/1] BaseTools: Fixed a Incremental build issue Thread-Index: AQHV3ZJ0S33nxcCXuE26qBzBHmkO7qgPdxYw Date: Fri, 7 Feb 2020 09:29:41 +0000 Message-ID: <48a4ee64e965449ca8ec584a0f984b61@intel.com> References: <20200207084145.17576-1-bob.c.feng@intel.com> In-Reply-To: <20200207084145.17576-1-bob.c.feng@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-version: 11.2.0.6 dlp-product: dlpe-windows dlp-reaction: no-action x-originating-ip: [10.239.127.36] MIME-Version: 1.0 Return-Path: liming.gao@intel.com Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Liming Gao > -----Original Message----- > From: Feng, Bob C > Sent: Friday, February 7, 2020 4:42 PM > To: edk2-devel@lists.01.org; devel@edk2.groups.io > Cc: Feng, Bob C ; Dong, Guo ; G= ao, Liming > Subject: [Patch 1/1] BaseTools: Fixed a Incremental build issue >=20 > From: Bob Feng >=20 > The .map file is not update to FFS_OUTPUT_DIR folder > in the incremental build. >=20 > Signed-off-by: Guo Dong > Signed-off-by: Bob Feng > Cc: Liming Gao > --- > BaseTools/Source/Python/AutoGen/GenMake.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/BaseTools/Source/Python/AutoGen/GenMake.py b/BaseTools/Sourc= e/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 =3D self.ReplaceMacro(Src) > Dst =3D 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_TEMP= LATE_[self._FileType] %{'Src': Src, 'Dst': Dst}) >=20 > FfsCmdList =3D Cmd[0] > for index, Str in enumerate(FfsCmdList): > if '-o' =3D=3D Str: > -- > 2.18.0.windows.1