From: Seungki Kim Date: Thu, 24 Oct 2024 16:33:40 +0000 (+0900) Subject: meson: fix minor typo X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d03cb0aca3cb6fc6d3695c8283263893aaf15080;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 1f86a6606..9cea5108d 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)'