aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/environment.py
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2017-11-26 06:15:13 +0000
committerJosh Soref <jsoref@users.noreply.github.com>2017-11-26 06:15:13 +0000
commit2b0505f222f3626886c1f3bac42fea43fe6c93e1 (patch)
treefa3302aaa7360847181a766e6e877426e93c9541 /mesonbuild/environment.py
parent72ba9302aa836e125afebd4b45036df773f74ff0 (diff)
downloadmeson-2b0505f222f3626886c1f3bac42fea43fe6c93e1.zip
meson-2b0505f222f3626886c1f3bac42fea43fe6c93e1.tar.gz
meson-2b0505f222f3626886c1f3bac42fea43fe6c93e1.tar.bz2
spelling: targeting
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