aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/34 has header
diff options
context:
space:
mode:
authorWolfgang Stöggl <c72578@yahoo.de>2019-11-06 14:49:00 +0100
committerMichael Hirsch, Ph.D <10931741+scivision@users.noreply.github.com>2019-11-06 09:55:30 -0500
commitf037e7ef4538b37625c0893d32cad36e72648c8a (patch)
tree90c594eac530b600ac64168e50f2f8a298ebff56 /test cases/common/34 has header
parentf56ef583d3c8ecda7725ca04b48011c9081a7349 (diff)
downloadmeson-f037e7ef4538b37625c0893d32cad36e72648c8a.zip
meson-f037e7ef4538b37625c0893d32cad36e72648c8a.tar.gz
meson-f037e7ef4538b37625c0893d32cad36e72648c8a.tar.bz2
Fix typos found by codespell
- Typos were found by codespell v1.16.0
Diffstat (limited to 'test cases/common/34 has header')
-rw-r--r--test cases/common/34 has header/meson.build10
1 files changed, 5 insertions, 5 deletions
diff --git a/test cases/common/34 has header/meson.build b/test cases/common/34 has header/meson.build
index b53849c..8096763 100644
--- a/test cases/common/34 has header/meson.build
+++ b/test cases/common/34 has header/meson.build
@@ -2,11 +2,11 @@ project('has header', 'c', 'cpp')
host_system = host_machine.system()
-non_existant_header = 'ouagadougou.h'
+non_existent_header = 'ouagadougou.h'
# Copy it into the builddir to ensure that it isn't found even if it's there
-configure_file(input : non_existant_header,
- output : non_existant_header,
+configure_file(input : non_existent_header,
+ output : non_existent_header,
configuration : configuration_data())
# Test that the fallback to __has_include also works on all compilers
@@ -48,7 +48,7 @@ foreach fallback : fallbacks
# This header exists in the source and the builddir, but we still must not
# find it since we are looking in the system directories.
- assert(not comp.has_header(non_existant_header, prefix : fallback),
- 'Found non-existant header.')
+ assert(not comp.has_header(non_existent_header, prefix : fallback),
+ 'Found non-existent header.')
endforeach
endforeach