aboutsummaryrefslogtreecommitdiff
path: root/test cases
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 /test cases
parent72ba9302aa836e125afebd4b45036df773f74ff0 (diff)
downloadmeson-2b0505f222f3626886c1f3bac42fea43fe6c93e1.zip
meson-2b0505f222f3626886c1f3bac42fea43fe6c93e1.tar.gz
meson-2b0505f222f3626886c1f3bac42fea43fe6c93e1.tar.bz2
spelling: targeting
Diffstat (limited to 'test cases')
-rw-r--r--test cases/osx/3 has function xcode8/meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/test cases/osx/3 has function xcode8/meson.build b/test cases/osx/3 has function xcode8/meson.build
index 300d352..5fe3e53 100644
--- a/test cases/osx/3 has function xcode8/meson.build
+++ b/test cases/osx/3 has function xcode8/meson.build
@@ -10,16 +10,16 @@ args_10_12 = ['-mmacosx-version-min=10.12'] + sdk_args
# Test requires XCode 8 which has the MacOSX 10.12 SDK
if cc.version().version_compare('>=8.0')
if cc.has_function('clock_gettime', args : args_10_11, prefix : '#include <time.h>')
- error('Should not have found clock_gettime via <time.h> when targetting Mac OS X 10.11')
+ error('Should not have found clock_gettime via <time.h> when targeting Mac OS X 10.11')
endif
if not cc.has_function('clock_gettime', args : args_10_12, prefix : '#include <time.h>')
- error('Did NOT find clock_gettime via <time.h> when targetting Mac OS X 10.12')
+ error('Did NOT find clock_gettime via <time.h> when targeting Mac OS X 10.12')
endif
if not cc.has_function('clock_gettime', args : args_10_11)
- error('Did NOT find clock_gettime w/o a prototype when targetting Mac OS X 10.11')
+ error('Did NOT find clock_gettime w/o a prototype when targeting Mac OS X 10.11')
endif
if not cc.has_function('clock_gettime', args : args_10_12)
- error('Did NOT find clock_gettime w/o a prototype when targetting Mac OS X 10.12')
+ error('Did NOT find clock_gettime w/o a prototype when targeting Mac OS X 10.12')
endif
else
message('Test needs XCode 8, skipping...')