From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.byosoft.com.cn (mail.byosoft.com.cn [58.240.74.242]) by mx.groups.io with SMTP id smtpd.web08.33299.1608514873199579520 for ; Sun, 20 Dec 2020 17:41:14 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (domain: byosoft.com.cn, ip: 58.240.74.242, mailfrom: gaoliming@byosoft.com.cn) Received: from DESKTOPS6D0PVI ([58.246.60.130]) (envelope-sender ) by 192.168.6.13 with ESMTP for ; Mon, 21 Dec 2020 09:41:11 +0800 X-WM-Sender: gaoliming@byosoft.com.cn X-WM-AuthFlag: YES X-WM-AuthUser: gaoliming@byosoft.com.cn From: "gaoliming" To: , , "'Yunhua Feng'" Cc: "'Chen, Christine'" References: <20201218030750.2993-1-fengyunhua@byosoft.com.cn> In-Reply-To: Subject: =?UTF-8?B?5Zue5aSNOiBbZWRrMi1kZXZlbF0gW1BBVENIXSBCYXNlVG9vbHM6IENvcnJlY3QgcmVwb3J0IHRoZSBsaW5lIG51bWJlciBpbiBJTkYgZmlsZSBpc3N1ZQ==?= Date: Mon, 21 Dec 2020 09:41:11 +0800 Message-ID: <012f01d6d73a$5cd200f0$167602d0$@byosoft.com.cn> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 16.0 Thread-Index: AQHWZqS5Bvl0Jav9sJlFgnOWUgJgiAGLyNKNqfVJIzA= Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: quoted-printable Content-Language: zh-cn Create PR https://github.com/tianocore/edk2/pull/1249 > -----=D3=CA=BC=FE=D4=AD=BC=FE----- > =B7=A2=BC=FE=C8=CB: bounce+27952+69182+4905953+8761045@groups.io > =B4=FA=B1=ED Bob Feng > =B7=A2=CB=CD=CA=B1=BC=E4: 2020=C4=EA12=D4=C218=C8=D5 19:11 > =CA=D5=BC=FE=C8=CB: Yunhua Feng ; devel@edk2.= groups.io > =B3=AD=CB=CD: Liming Gao ; Chen, Christine > > =D6=F7=CC=E2: Re: [edk2-devel] [PATCH] BaseTools: Correct report the lin= e number in > INF file issue >=20 > Reviewed-by: Bob Feng >=20 > -----Original Message----- > From: Yunhua Feng > Sent: Friday, December 18, 2020 11:08 AM > To: devel@edk2.groups.io > Cc: Feng, Bob C ; Liming Gao > ; Chen, Christine > Subject: [PATCH] BaseTools: Correct report the line number in INF file issue >=20 > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3D3127 >=20 > If one protocol is not found in package dec file, Build will report the error > message that module.inf(-1): error 4000: Value of Protocol [gXxxProtocolGuid] > is not found under [Protocols] section in MdePkg.dec. >=20 > Here, -1 should be the line number of this protocol in module INF file. >=20 > Cc: Bob Feng > Cc: Liming Gao > Cc: Yuwei Chen > Signed-off-by: Yunhua Feng > --- > BaseTools/Source/Python/Workspace/MetaFileTable.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/BaseTools/Source/Python/Workspace/MetaFileTable.py > b/BaseTools/Source/Python/Workspace/MetaFileTable.py > index 20cb80e36e..bebf9062e8 100644 > --- a/BaseTools/Source/Python/Workspace/MetaFileTable.py > +++ b/BaseTools/Source/Python/Workspace/MetaFileTable.py > @@ -154,7 +154,7 @@ class ModuleTable(MetaFileTable): > if BelongsToItem is not None: > result =3D [item for item in result if item[7] =3D=3D BelongsToItem] >=20 > - result =3D [ [r[2],r[3],r[4],r[5],r[6],r[0],r[9]] for r in resu= lt ] > + result =3D [ [r[2],r[3],r[4],r[5],r[6],r[0],r[8]] for r in resu= lt > + ] > return result >=20 > ## Python class representation of table storing package data > -- > 2.27.0.windows.1 >=20 >=20 >=20 >=20 >=20 >=20