From: Seungki Kim Date: Thu, 24 Oct 2024 16:33:40 +0000 (+0900) Subject: meson: fix minor typo X-Git-Tag: v6.0.3~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1fc5314ff8f2bbe7f2fb544461a7fea048a6d964;p=thirdparty%2Flxc.git meson: fix minor typo Fixes: https://github.com/lxc/lxc/issues/4492 Signed-off-by: Seungki Kim --- diff --git a/meson.build b/meson.build index 6235ee2ff..5c9442277 100644 --- a/meson.build +++ b/meson.build @@ -691,7 +691,7 @@ endif if cc.get_define('FS_CONFIG_SET_CMD_CREATE', prefix: decl_headers) != '' srcconf.set10('HAVE_' + 'FS_CONFIG_SET_CMD_CREATE'.underscorify().to_upper(), true) - found_types += 'FS_CONFIG_SET_CMD_CREAT (sys/mount.h)' + found_types += 'FS_CONFIG_SET_CMD_CREATE (sys/mount.h)' else srcconf.set10('HAVE_' + 'FS_CONFIG_SET_CMD_CREATE'.underscorify().to_upper(), false) missing_types += 'FS_CONFIG_SET_CMD_CREATE (sys/mount.h)'