summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Popela <tpopela@redhat.com>2018-04-17 15:46:56 +0200
committerTomas Popela <tpopela@redhat.com>2018-04-17 15:46:56 +0200
commit3d1e0e5f8be8d9e6fc971b145708637df8b42cbd (patch)
treea88e9d343fbf2fc266fb893a6a56f11fe1bfe4ab
parent7bb9c82fddbf2ca2d09dbaabb46d54d7c18c00b9 (diff)
downloadlibsoup-3d1e0e5f8be8d9e6fc971b145708637df8b42cbd.tar.gz
meson: Fix typo in assert
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 849c3ec2..51ba351d 100644
--- a/meson.build
+++ b/meson.build
@@ -171,7 +171,7 @@ if enable_gssapi
endif
if cc.has_header('gssapi/gssapi.h', required: false)
gssapi_lib = cc.find_library('gssapi' + gssapi_lib_type, required: false)
- assert(gssapi_lib.found(), 'GSSAPI support requested, but the MIT Keberos 5 headers and libraries are not found')
+ assert(gssapi_lib.found(), 'GSSAPI support requested, but the MIT Kerberos 5 headers and libraries are not found')
add_project_link_arguments('gssapi@0@.lib'.format(gssapi_lib_type), language : 'c')
endif
else