From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) (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 B41C721A0483A for ; Tue, 11 Apr 2017 23:35:58 -0700 (PDT) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 11 Apr 2017 23:35:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,189,1488873600"; d="scan'208";a="247573634" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by fmsmga004.fm.intel.com with ESMTP; 11 Apr 2017 23:35:58 -0700 Received: from fmsmsx152.amr.corp.intel.com (10.18.125.5) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 11 Apr 2017 23:35:58 -0700 Received: from shsmsx152.ccr.corp.intel.com (10.239.6.52) by FMSMSX152.amr.corp.intel.com (10.18.125.5) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 11 Apr 2017 23:35:57 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.246]) by SHSMSX152.ccr.corp.intel.com ([169.254.6.217]) with mapi id 14.03.0319.002; Wed, 12 Apr 2017 14:35:56 +0800 From: "Gao, Liming" To: "Zhu, Yonghong" , "edk2-devel@lists.01.org" CC: Derek Lin Thread-Topic: [edk2] [PATCH 1/2] BaseTools: Fix build fail after clean or cleanall target. Thread-Index: AQHSso8fQIzlFbgs9EK4PsuFWVTa76HBSPEA Date: Wed, 12 Apr 2017 06:35:54 +0000 Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14D71D3A9@shsmsx102.ccr.corp.intel.com> References: <1491893068-8560-1-git-send-email-yonghong.zhu@intel.com> In-Reply-To: <1491893068-8560-1-git-send-email-yonghong.zhu@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 1/2] BaseTools: Fix build fail after clean or cleanall target. X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Apr 2017 06:35:58 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Liming Gao >-----Original Message----- >From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of >Yonghong Zhu >Sent: Tuesday, April 11, 2017 2:44 PM >To: edk2-devel@lists.01.org >Cc: Derek Lin >Subject: [edk2] [PATCH 1/2] BaseTools: Fix build fail after clean or clean= all >target. > >From: Derek Lin > >Remove module AutoGenTimeStamp file during clean or cleanall. > >Contributed-under: TianoCore Contribution Agreement 1.0 >Signed-off-by: Derek Lin >Reviewed-by: Yonghong Zhu >--- > BaseTools/Source/Python/AutoGen/GenMake.py | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/BaseTools/Source/Python/AutoGen/GenMake.py >b/BaseTools/Source/Python/AutoGen/GenMake.py >index ea07b97786..ac24bd8bbe 100644 >--- a/BaseTools/Source/Python/AutoGen/GenMake.py >+++ b/BaseTools/Source/Python/AutoGen/GenMake.py >@@ -386,7 +386,7 @@ ${END} > # > clean: > \t${BEGIN}${clean_command} >-\t${END} >+\t${END}\t$(RM) AutoGenTimeStamp > > # > # clean all generated files >@@ -395,6 +395,7 @@ cleanall: > ${BEGIN}\t${cleanall_command} > ${END}\t$(RM) *.pdb *.idb > NUL 2>&1 > \t$(RM) $(BIN_DIR)${separator}$(MODULE_NAME).efi >+\t$(RM) AutoGenTimeStamp > > # > # clean all dependent libraries built >-- >2.11.1.windows.1 > >_______________________________________________ >edk2-devel mailing list >edk2-devel@lists.01.org >https://lists.01.org/mailman/listinfo/edk2-devel