From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) (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 03FC71A1E31 for ; Tue, 25 Oct 2016 21:32:42 -0700 (PDT) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga105.jf.intel.com with ESMTP; 25 Oct 2016 21:32:42 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,548,1473145200"; d="scan'208";a="1050241869" Received: from fmsmsx107.amr.corp.intel.com ([10.18.124.205]) by orsmga001.jf.intel.com with ESMTP; 25 Oct 2016 21:32:42 -0700 Received: from FMSMSX110.amr.corp.intel.com (10.18.116.10) by fmsmsx107.amr.corp.intel.com (10.18.124.205) with Microsoft SMTP Server (TLS) id 14.3.248.2; Tue, 25 Oct 2016 21:32:42 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by fmsmsx110.amr.corp.intel.com (10.18.116.10) with Microsoft SMTP Server (TLS) id 14.3.248.2; Tue, 25 Oct 2016 21:32:41 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.139]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.209]) with mapi id 14.03.0248.002; Wed, 26 Oct 2016 12:32:40 +0800 From: "Zhu, Yonghong" To: "Gao, Liming" , "edk2-devel@lists.01.org" Thread-Topic: [Patch] edksetup.bat: make sure BASE_TOOLS_PATH be set correctly Thread-Index: AQHSLzmXCNZnf1/kSUybzOPsV5if66C6JVEA Date: Wed, 26 Oct 2016 04:32:39 +0000 Message-ID: References: <1477452712-20132-1-git-send-email-liming.gao@intel.com> In-Reply-To: <1477452712-20132-1-git-send-email-liming.gao@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiOTUyNzVmZDQtYzRmNy00OWVhLWFmZTUtMzZmN2U0MmFhOTVlIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IjdmN3pHRGhsUWE1bVNJWVFHdWtLUEtJMFcwbEJuTVJoVU95b0M0SFBXRm89In0= x-ctpclassification: CTP_IC x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [Patch] edksetup.bat: make sure BASE_TOOLS_PATH be set correctly 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: Wed, 26 Oct 2016 04:32:43 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Yonghong Zhu =20 Best Regards, Zhu Yonghong -----Original Message----- From: Gao, Liming=20 Sent: Wednesday, October 26, 2016 11:32 AM To: edk2-devel@lists.01.org Cc: Zhu, Yonghong Subject: [Patch] edksetup.bat: make sure BASE_TOOLS_PATH be set correctly Move checkNt32Flag before set BASE_TOOLS_PATH env to make sure it be set Cc: Yonghong Zhu Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Liming Gao --- edksetup.bat | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/edksetup.bat b/edksetup.bat index 6c8c0aa..7aa1675 100755 --- a/edksetup.bat +++ b/edksetup.bat @@ -77,9 +77,10 @@ if not defined EDK_TOOLS_PATH ( ) ) ) -if exist %EDK_TOOLS_PATH%\Source set BASE_TOOLS_PATH=3D%EDK_TOOLS_PATH% =20 :checkNt32Flag +if exist %EDK_TOOLS_PATH%\Source set BASE_TOOLS_PATH=3D%EDK_TOOLS_PATH% + @REM The Nt32 Emluation Platform requires Microsoft Libraries @REM and he= aders to interface with Windows. if /I "%1"=3D=3D"--nt32" ( -- 2.8.0.windows.1