public inbox for [email protected]  
help / color / mirror / Atom feed
From: Huang, Jun <[email protected]>
To: [email protected] <[email protected]>
Subject: Is there a mistake in line 22 of Make.bat?
Date: Thu, 14 Jan 2021 01:20:30 +0000
Message-ID: <3e6e541367894c4c95ac17f8050aad96@G08CNEXMBPEKD06.g08.fujitsu.local> (raw)

Hi,

The following code is line 22 of Make.bat:
	if "%Platform%" == "X86" (

I tried `echo %Platform%` in VS2017 x86 native Tools Command Prompt, the result is "x86"(not "X86").
If it's a mistake, the attached patch adds the changes.


Regrads,
Huang




Attachments:

  [application/octet-stream] Fix-Platfrom.patch (262B, 2-Fix-Platfrom.patch)
  download | inline diff:
diff --git a/Make.bat b/Make.bat
index 11a755ffe..ac0be6339 100644
--- a/Make.bat
+++ b/Make.bat
@@ -19,7 +19,7 @@ IF "%1" == "clean" (
 )
 
 set "ARCHITECTURE=x64"
-if "%Platform%" == "X86" (
+if "%Platform%" == "x86" (
     set "ARCHITECTURE=x86"
 )
 


view thread (3+ messages)  latest in thread

reply

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Reply to all the recipients using the --to and --cc options:
  reply via email

  To: [email protected]
  Cc: [email protected]
  Subject: Re: Is there a mistake in line 22 of Make.bat?
  In-Reply-To: <3e6e541367894c4c95ac17f8050aad96@G08CNEXMBPEKD06.g08.fujitsu.local>

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox