aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/environment.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-11-27 01:36:43 +0200
committerGitHub <noreply@github.com>2017-11-27 01:36:43 +0200
commit11f1fc913d32adfd15b4d65cb25f06183361781b (patch)
tree4ff0f989596d10839bf5d0bb0afccf6ca789ca25 /mesonbuild/environment.py
parent4ca1e8638c3f2bc7411ddc930cc8c995c163bc1a (diff)
parent9775e2b40d5b51af0910c203228c7b9651b07caa (diff)
downloadmeson-11f1fc913d32adfd15b4d65cb25f06183361781b.zip
meson-11f1fc913d32adfd15b4d65cb25f06183361781b.tar.gz
meson-11f1fc913d32adfd15b4d65cb25f06183361781b.tar.bz2
Merge pull request #2690 from jsoref/spelling
Spelling
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r--mesonbuild/environment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
index 58cc9b9..0cb1450 100644
--- a/mesonbuild/environment.py
+++ b/mesonbuild/environment.py
@@ -154,7 +154,7 @@ def detect_windows_arch(compilers):
# Check if we're using and inside an MSVC toolchain environment
if compiler.id == 'msvc' and 'VCINSTALLDIR' in os.environ:
# 'Platform' is only set when the target arch is not 'x86'.
- # It's 'x64' when targetting x86_64 and 'arm' when targetting ARM.
+ # It's 'x64' when targeting x86_64 and 'arm' when targeting ARM.
platform = os.environ.get('Platform', 'x86').lower()
if platform == 'x86':
return platform