diff options
author | Roman Reiss <me@silverwind.io> | 2017-06-16 17:49:20 +0200 |
---|---|---|
committer | Roman Reiss <me@silverwind.io> | 2017-06-17 19:17:46 +0200 |
commit | ecf6a46d98a5d73fb9f98f10a634c786b60aea09 (patch) | |
tree | 1817ee54c89ca9972f1d92feda21bddd3431fd8e /vcbuild.bat | |
parent | 7bdb5ca6207dbfc2ef9b253dd68588c3cf8b1cff (diff) | |
download | node-new-ecf6a46d98a5d73fb9f98f10a634c786b60aea09.tar.gz |
src,lib,test,doc: correct misspellings
PR-URL: https://github.com/nodejs/node/pull/13719
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Diffstat (limited to 'vcbuild.bat')
-rw-r--r-- | vcbuild.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcbuild.bat b/vcbuild.bat index 41a82e1551..fcedcb387f 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -55,7 +55,7 @@ if /i "%1"=="clean" set target=Clean&goto arg-ok if /i "%1"=="ia32" set target_arch=x86&goto arg-ok if /i "%1"=="x86" set target_arch=x86&goto arg-ok if /i "%1"=="x64" set target_arch=x64&goto arg-ok -@rem args should be vs2017 and vs2015. keeping vc2015 for backward combatibility (undocumented) +@rem args should be vs2017 and vs2015. keeping vc2015 for backward compatibility (undocumented) if /i "%1"=="vc2015" set target_env=vs2015&goto arg-ok if /i "%1"=="vs2015" set target_env=vs2015&goto arg-ok if /i "%1"=="vs2017" set target_env=vs2017&goto arg-ok @@ -157,7 +157,7 @@ if defined noprojgen if defined nobuild if not defined sign if not defined msi g set msvs_host_arch=x86 if _%PROCESSOR_ARCHITECTURE%_==_AMD64_ set msvs_host_arch=amd64 if _%PROCESSOR_ARCHITEW6432%_==_AMD64_ set msvs_host_arch=amd64 -@rem usualy vcvarsall takes an argument: host + '_' + target +@rem usually vcvarsall takes an argument: host + '_' + target set vcvarsall_arg=%msvs_host_arch%_%target_arch% @rem unless both host and target are x64 if %target_arch%==x64 if %msvs_host_arch%==amd64 set vcvarsall_arg=amd64 |