From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.43, mailfrom: michael.d.kinney@intel.com) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by groups.io with SMTP; Thu, 23 May 2019 07:40:47 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 May 2019 07:40:46 -0700 X-ExtLoop1: 1 Received: from orsmsx109.amr.corp.intel.com ([10.22.240.7]) by orsmga008.jf.intel.com with ESMTP; 23 May 2019 07:40:46 -0700 Received: from orsmsx113.amr.corp.intel.com ([169.254.9.231]) by ORSMSX109.amr.corp.intel.com ([169.254.11.251]) with mapi id 14.03.0415.000; Thu, 23 May 2019 07:40:45 -0700 From: "Michael D Kinney" To: "devel@edk2.groups.io" , "Feng, Bob C" , "Kinney, Michael D" CC: "Gao, Liming" Subject: Re: [edk2-devel] [Patch 2] BaseTools: Remove './SecMain' from 'run' target Thread-Topic: [edk2-devel] [Patch 2] BaseTools: Remove './SecMain' from 'run' target Thread-Index: AQHVEUbWU0NeAOo2sU+DaiP4Ux5Nj6Z4yB/A Date: Thu, 23 May 2019 14:40:46 +0000 Message-ID: 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: dlp-product: dlpe-windows dlp-version: 11.0.600.7 dlp-reaction: no-action x-originating-ip: [10.22.254.140] MIME-Version: 1.0 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Michael D Kinney > -----Original Message----- > From: devel@edk2.groups.io > [mailto:devel@edk2.groups.io] On Behalf Of Bob Feng > Sent: Thursday, May 23, 2019 2:07 AM > To: devel@edk2.groups.io > Cc: Feng, Bob C ; Gao, Liming > ; Kinney, Michael D > > Subject: [edk2-devel] [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/Python/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.BuildDir, > 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 >=20 >=20 >=20