The default value of the check positional argument to run_command() will change from false to true in a future meson version. Set it to false explicitly. Signed-off-by: Laurent Pinchart <laurent.pinchart@xxxxxxxxxxxxxxxx> --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index aec69a9bc3f6..50fad53c6f26 100644 --- a/meson.build +++ b/meson.build @@ -240,7 +240,8 @@ endif # override will restrict udevd to bpf syscall only and will stop the system # from booting. This is also true on current debian versions. have_udevdsyscallfilter = run_command(prog_grep, '-s', 'SystemCallFilter', - systemd_systemdir / 'systemd-udevd.service').returncode() == 0 + systemd_systemdir / 'systemd-udevd.service', + check : false).returncode() == 0 dep_libudev = dependency('libudev', required : get_option('libdvbv5').enabled()) if dep_libudev.found() -- Regards, Laurent Pinchart