From 27f72256d9e8b8163c4952b47a3d668a3e6bad50 Mon Sep 17 00:00:00 2001 From: Allen Webster Date: Thu, 22 Jun 2017 21:57:08 -0400 Subject: [PATCH] even more refinement to the vcvarsall thing --- buildsuper.bat | 2 +- buildsuper_x86.bat | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/buildsuper.bat b/buildsuper.bat index cccba714..181ce47b 100644 --- a/buildsuper.bat +++ b/buildsuper.bat @@ -6,7 +6,7 @@ REM default files no matter where you store your code. REM And no matter how you call buildsuper.bat. SET CODE_HOME=%~dp0 -IF NOT "%Platform%" == "X64" (call "%CODE_HOME%\\windows_scripts\\setup_cl_x64.bat") +IF NOT "%Platform%" == "X64" IF NOT "%Platform%" == "x64" (call "%CODE_HOME%\\windows_scripts\\setup_cl_x64.bat") SET SRC=%1 if "%SRC%" == "" SET SRC=4coder_default_bindings.cpp diff --git a/buildsuper_x86.bat b/buildsuper_x86.bat index 1e8ecd09..56c90ba9 100644 --- a/buildsuper_x86.bat +++ b/buildsuper_x86.bat @@ -6,7 +6,7 @@ REM default files no matter where you store your code. REM And no matter how you call buildsuper.bat. SET CODE_HOME=%~dp0 -IF NOT "%Platform%" == "X86" (call "%CODE_HOME%\\windows_scripts\\setup_cl_x86.bat") +IF NOT "%Platform%" == "X86" IF NOT "%Platform%" == "x86" (call "%CODE_HOME%\\windows_scripts\\setup_cl_x86.bat") SET SRC=%1 if "%SRC%" == "" (SET SRC=4coder_default_bindings.cpp)