From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.43; helo=mga05.intel.com; envelope-from=jaben.carsey@intel.com; receiver=edk2-devel@lists.01.org Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) (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 84B4D211DC086 for ; Thu, 14 Mar 2019 07:57:34 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Mar 2019 07:57:34 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.58,478,1544515200"; d="scan'208";a="327296601" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by fmsmga006.fm.intel.com with ESMTP; 14 Mar 2019 07:57:34 -0700 Received: from fmsmsx158.amr.corp.intel.com (10.18.116.75) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.408.0; Thu, 14 Mar 2019 07:57:33 -0700 Received: from fmsmsx103.amr.corp.intel.com ([169.254.2.108]) by fmsmsx158.amr.corp.intel.com ([169.254.15.35]) with mapi id 14.03.0415.000; Thu, 14 Mar 2019 07:57:33 -0700 From: "Carsey, Jaben" To: "Feng, Bob C" , "edk2-devel@lists.01.org" CC: "Gao, Liming" Thread-Topic: [edk2] [Patch] BaseTools: Fixed the issue of BaseTools Make cleanall failed. Thread-Index: AQHU2nTuYN1vYWv2zU6mHXaPfDnrlqYLN5QA Date: Thu, 14 Mar 2019 14:57:33 +0000 Message-ID: References: <20190314144732.20064-1-bob.c.feng@intel.com> In-Reply-To: <20190314144732.20064-1-bob.c.feng@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZDhlYTc3MjEtYjU0MS00NzY1LWEwMzUtOGFmOWRkNGQ0YmZmIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoibm5mYVhNNFhkcnJYUGNSWWtPUk9kd1IzXC9Ub2N2enBQd0RRM0p5T0NnamUydE11azNYRHRFUEZZT1BXSXZ4MHQifQ== x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.400.15 dlp-reaction: no-action x-originating-ip: [10.1.200.106] MIME-Version: 1.0 Subject: Re: [Patch] BaseTools: Fixed the issue of BaseTools Make cleanall failed. X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2019 14:57:34 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Jaben Carsey > -----Original Message----- > From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of > Feng, Bob C > Sent: Thursday, March 14, 2019 7:48 AM > To: edk2-devel@lists.01.org > Cc: Gao, Liming > Subject: [edk2] [Patch] BaseTools: Fixed the issue of BaseTools Make clea= nall > failed. >=20 > BZ:https://bugzilla.tianocore.org/show_bug.cgi?id=3D1622 > There is duplicated $(PYTHON_COMMAND) in the > command of cleanall >=20 > Contributed-under: TianoCore Contribution Agreement 1.1 > Signed-off-by: Bob Feng > Cc: Liming Gao > --- > BaseTools/Source/C/Makefile | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) >=20 > diff --git a/BaseTools/Source/C/Makefile b/BaseTools/Source/C/Makefile > index 08f0081212..ca71bd1178 100644 > --- a/BaseTools/Source/C/Makefile > +++ b/BaseTools/Source/C/Makefile > @@ -65,10 +65,10 @@ clean: > @if defined PYTHON_COMMAND $(PYTHON_COMMAND) > Makefiles\NmakeSubdirs.py clean $(LIBRARIES) $(APPLICATIONS) > @if not defined PYTHON_COMMAND $(PYTHON_HOME)\python.exe > Makefiles\NmakeSubdirs.py clean $(LIBRARIES) $(APPLICATIONS) >=20 > .PHONY: cleanall > cleanall: > - @if defined PYTHON_COMMAND $(PYTHON_COMMAND) > $(PYTHON_COMMAND) Makefiles\NmakeSubdirs.py cleanall $(LIBRARIES) > $(APPLICATIONS) > - @if not defined PYTHON_COMMAND $(PYTHON_HOME)\python.exe > $(PYTHON_COMMAND) Makefiles\NmakeSubdirs.py cleanall $(LIBRARIES) > $(APPLICATIONS) > + @if defined PYTHON_COMMAND $(PYTHON_COMMAND) > Makefiles\NmakeSubdirs.py cleanall $(LIBRARIES) $(APPLICATIONS) > + @if not defined PYTHON_COMMAND $(PYTHON_HOME)\python.exe > Makefiles\NmakeSubdirs.py cleanall $(LIBRARIES) $(APPLICATIONS) >=20 > !INCLUDE Makefiles\ms.rule >=20 > -- > 2.18.0.windows.1 >=20 > _______________________________________________ > edk2-devel mailing list > edk2-devel@lists.01.org > https://lists.01.org/mailman/listinfo/edk2-devel