From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 4E90C1A1E0F for ; Mon, 26 Sep 2016 19:57:33 -0700 (PDT) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga104.jf.intel.com with ESMTP; 26 Sep 2016 19:57:33 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,402,1470726000"; d="scan'208";a="13525681" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by fmsmga006.fm.intel.com with ESMTP; 26 Sep 2016 19:57:32 -0700 Received: from fmsmsx154.amr.corp.intel.com (10.18.116.70) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 26 Sep 2016 19:57:32 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by FMSMSX154.amr.corp.intel.com (10.18.116.70) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 26 Sep 2016 19:57:30 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.15]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.101]) with mapi id 14.03.0248.002; Tue, 27 Sep 2016 10:57:29 +0800 From: "Gao, Liming" To: "Wu, Hao A" , "edk2-devel@lists.01.org" Thread-Topic: [PATCH] BaseTools: List missing source python files for Ecc tool in Makefile Thread-Index: AQHSGGktB3LKQ7LvjkyDtcp4UkknOqCMpOVw Date: Tue, 27 Sep 2016 02:57:28 +0000 Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14B47D3D7@shsmsx102.ccr.corp.intel.com> References: <1474944293-81836-1-git-send-email-hao.a.wu@intel.com> In-Reply-To: <1474944293-81836-1-git-send-email-hao.a.wu@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 Subject: Re: [PATCH] BaseTools: List missing source python files for Ecc tool in Makefile X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Sep 2016 02:57:33 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Liming Gao > -----Original Message----- > From: Wu, Hao A > Sent: Tuesday, September 27, 2016 10:45 AM > To: edk2-devel@lists.01.org > Cc: Wu, Hao A ; Zhu, Yonghong > ; Gao, Liming > Subject: [PATCH] BaseTools: List missing source python files for Ecc tool= in > Makefile >=20 > Add missing python sources files that are dependent for Ecc tool in > Makefile. >=20 > Cc: Yonghong Zhu > Cc: Liming Gao > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Hao Wu > --- > BaseTools/Source/Python/Makefile | 20 ++++++++++++++++++++ > 1 file changed, 20 insertions(+) >=20 > diff --git a/BaseTools/Source/Python/Makefile > b/BaseTools/Source/Python/Makefile > index e7755cd..7ffe211 100644 > --- a/BaseTools/Source/Python/Makefile > +++ b/BaseTools/Source/Python/Makefile > @@ -237,6 +237,26 @@ > CMD_UPT=3D$(BASE_TOOLS_PATH)\Source\Python\UPT\Core\DependencyR > ules.py \ > $(BASE_TOOLS_PATH)\Source\Python\UPT\Xml\XmlParser.py \ > $(BASE_TOOLS_PATH)\Source\Python\UPT\Xml\XmlParserMisc.py >=20 > +CMD_ECC=3D$(BASE_TOOLS_PATH)\Source\Python\Ecc\c.py \ > + $(BASE_TOOLS_PATH)\Source\Python\Ecc\Check.py \ > + $(BASE_TOOLS_PATH)\Source\Python\Ecc\CLexer.py \ > + $(BASE_TOOLS_PATH)\Source\Python\Ecc\CodeFragment.py \ > + $(BASE_TOOLS_PATH)\Source\Python\Ecc\CodeFragmentCollector.py \ > + $(BASE_TOOLS_PATH)\Source\Python\Ecc\Configuration.py \ > + $(BASE_TOOLS_PATH)\Source\Python\Ecc\CParser.py \ > + $(BASE_TOOLS_PATH)\Source\Python\Ecc\Database.py \ > + $(BASE_TOOLS_PATH)\Source\Python\Ecc\Ecc.py \ > + $(BASE_TOOLS_PATH)\Source\Python\Ecc\EccGlobalData.py \ > + $(BASE_TOOLS_PATH)\Source\Python\Ecc\EccToolError.py \ > + $(BASE_TOOLS_PATH)\Source\Python\Ecc\Exception.py \ > + $(BASE_TOOLS_PATH)\Source\Python\Ecc\FileProfile.py \ > + $(BASE_TOOLS_PATH)\Source\Python\Ecc\MetaDataParser.py \ > + $(BASE_TOOLS_PATH)\Source\Python\Ecc\ParserWarning.py \ > + > $(BASE_TOOLS_PATH)\Source\Python\Ecc\MetaFileWorkspace\MetaDataTa > ble.py \ > + > $(BASE_TOOLS_PATH)\Source\Python\Ecc\MetaFileWorkspace\MetaFilePar > ser.py \ > + > $(BASE_TOOLS_PATH)\Source\Python\Ecc\MetaFileWorkspace\MetaFileTab > le.py \ > + $(BASE_TOOLS_PATH)\Source\Python\Ecc\Xml\XmlRoutines.py > + > !IFDEF PYTHON_FREEZER_PATH > all: SetPythonPath $(APPLICATIONS) > !ELSE > -- > 1.9.5.msysgit.0