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.24, mailfrom: liming.gao@intel.com) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by groups.io with SMTP; Thu, 23 May 2019 07:08:21 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 May 2019 07:08:20 -0700 X-ExtLoop1: 1 Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by orsmga003.jf.intel.com with ESMTP; 23 May 2019 07:08:20 -0700 Received: from fmsmsx125.amr.corp.intel.com (10.18.125.40) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.408.0; Thu, 23 May 2019 07:01:48 -0700 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by FMSMSX125.amr.corp.intel.com (10.18.125.40) with Microsoft SMTP Server (TLS) id 14.3.408.0; Thu, 23 May 2019 07:01:48 -0700 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.33]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.216]) with mapi id 14.03.0415.000; Thu, 23 May 2019 22:01:46 +0800 From: "Liming Gao" To: "Feng, Bob C" , "devel@edk2.groups.io" CC: "Kinney, Michael D" Subject: Re: [Patch 2] BaseTools: Remove './SecMain' from 'run' target Thread-Topic: [Patch 2] BaseTools: Remove './SecMain' from 'run' target Thread-Index: AQHVEUbbuHVT87dl4kC7vTVzytmLUaZ4vYUg Date: Thu, 23 May 2019 14:01:46 +0000 Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E450330@SHSMSX104.ccr.corp.intel.com> References: <20190523090635.29040-1-bob.c.feng@intel.com> In-Reply-To: <20190523090635.29040-1-bob.c.feng@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_NT x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiODc1MTNjMWItYzgwMS00MDI0LTgyNTgtN2IwYjdkOGEwNDMzIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoidGtidThrZjkzZmU2NmdvYzd3RmVYUmY4OWtXOWRzcGR3eVdHRkc0SDRsb2VreHJRZDd1QVoycm85UUxOSlFPWCJ9 dlp-product: dlpe-windows dlp-version: 11.0.600.7 dlp-reaction: no-action 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: Thursday, May 23, 2019 5:07 PM > To: devel@edk2.groups.io > Cc: Feng, Bob C ; Gao, Liming ; Kinney, Michael D > Subject: [Patch 2] BaseTools: Remove './SecMain' from 'run' target >=20 > BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3D1561 >=20 > This patch is related to commit 9ca1f1 > It's to remove the second .SecMain call from 'run' target. >=20 > Signed-off-by: Bob Feng > Cc: Liming Gao > Cc: Michael D Kinney > --- > BaseTools/Source/Python/build/build.py | 4 ---- > 1 file changed, 4 deletions(-) >=20 > diff --git a/BaseTools/Source/Python/build/build.py b/BaseTools/Source/Py= thon/build/build.py > index a8b4ce7375..80ceb98310 100644 > --- a/BaseTools/Source/Python/build/build.py > +++ b/BaseTools/Source/Python/build/build.py > @@ -1358,14 +1358,10 @@ class Build(): > EdkLogger.error("build", COMMAND_FAILURE) > return True >=20 > # run > if Target =3D=3D 'run': > - RunDir =3D os.path.normpath(os.path.join(AutoGenObject.Build= Dir, GlobalData.gGlobalDefines['ARCH'])) > - Command =3D '.\SecMain' > - os.chdir(RunDir) > - LaunchCommand(Command, RunDir) > return True >=20 > # build library > if Target =3D=3D 'libraries': > pass > -- > 2.20.1.windows.1