From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.65, mailfrom: liming.gao@intel.com) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by groups.io with SMTP; Mon, 19 Aug 2019 23:24:10 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Aug 2019 23:24:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,407,1559545200"; d="scan'208";a="377673710" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by fmsmga005.fm.intel.com with ESMTP; 19 Aug 2019 23:24:08 -0700 Received: from fmsmsx158.amr.corp.intel.com (10.18.116.75) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 19 Aug 2019 23:24:08 -0700 Received: from shsmsx108.ccr.corp.intel.com (10.239.4.97) by fmsmsx158.amr.corp.intel.com (10.18.116.75) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 19 Aug 2019 23:24:08 -0700 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.112]) by SHSMSX108.ccr.corp.intel.com ([169.254.8.163]) with mapi id 14.03.0439.000; Tue, 20 Aug 2019 14:24:06 +0800 From: "Liming Gao" To: "Feng, Bob C" , "Fan, ZhijuX" , "devel@edk2.groups.io" Subject: Re: [PATCH V3] [edk2-stable201908] BaseTools: Update incorrect variable name 'DataPile' Thread-Topic: [PATCH V3] [edk2-stable201908] BaseTools: Update incorrect variable name 'DataPile' Thread-Index: AdVW8Qlu7Qf20n4OR3yB8fyqgqcuCQACoxIAAAkRjOA= Date: Tue, 20 Aug 2019 06:24:05 +0000 Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E4D6C1C@SHSMSX104.ccr.corp.intel.com> References: <08650203BA1BD64D8AD9B6D5D74A85D161525DD1@SHSMSX104.ccr.corp.intel.com> In-Reply-To: <08650203BA1BD64D8AD9B6D5D74A85D161525DD1@SHSMSX104.ccr.corp.intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] 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: Tuesday, August 20, 2019 10:05 AM >To: Fan, ZhijuX ; devel@edk2.groups.io >Cc: Gao, Liming >Subject: RE: [PATCH V3] [edk2-stable201908] BaseTools: Update incorrect >variable name 'DataPile' > >Reviewed-by: Bob Feng > >-----Original Message----- >From: Fan, ZhijuX >Sent: Tuesday, August 20, 2019 8:49 AM >To: devel@edk2.groups.io >Cc: Gao, Liming ; Feng, Bob C >Subject: [PATCH V3] [edk2-stable201908] BaseTools: Update incorrect variab= le >name 'DataPile' > >BZ:https://bugzilla.tianocore.org/show_bug.cgi?id=3D2093 > >The PlatformAutoGen object has a DataPipe property but no DataPile >property So change the variable name 'DataPile' to 'DataPipe' in >BuildReport.py > >This patch is going to fix that issue. > >Cc: Liming Gao >Cc: Bob Feng >Signed-off-by: Zhiju.Fan >--- > BaseTools/Source/Python/build/BuildReport.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/BaseTools/Source/Python/build/BuildReport.py >b/BaseTools/Source/Python/build/BuildReport.py >index 9c12c01d2a..6b26f1c3b0 100644 >--- a/BaseTools/Source/Python/build/BuildReport.py >+++ b/BaseTools/Source/Python/build/BuildReport.py >@@ -2142,7 +2142,7 @@ class PlatformReport(object): > INFList =3D GlobalData.gFdfParser.Profile.InfDict= [Pa.Arch] > for InfName in INFList: > InfClass =3D PathClass(NormPath(InfName), Wa.= WorkspaceDir, >Pa.Arch) >- Ma =3D ModuleAutoGen(Wa, InfClass, Pa.BuildTa= rget, >Pa.ToolChain, Pa.Arch, Wa.MetaFile,Pa.DataPile) >+ Ma =3D ModuleAutoGen(Wa, InfClass, >+ Pa.BuildTarget, Pa.ToolChain, Pa.Arch, Wa.MetaFile, Pa.DataPipe) > if Ma is None: > continue > if Ma not in ModuleAutoGenList: >-- >2.14.1.windows.1