From e34cbcb92c9c82ffbda059af1edcf6fb253afb7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Mon, 17 Jan 2022 08:15:03 +0100 Subject: [PATCH] spa: tests: meson.build: specify `check` argument for `run_command()` The include tests are not critical, hence there is no need to halt the build if, for some reason, `find` fails. See https://github.com/mesonbuild/meson/issues/9300 --- spa/tests/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spa/tests/meson.build b/spa/tests/meson.build index 16826303a..db84241d7 100644 --- a/spa/tests/meson.build +++ b/spa/tests/meson.build @@ -9,7 +9,8 @@ if find.found() '-name', '*.h', '-not', '-name', 'type-info.h', '-type', 'f', - '-printf', '%P\n') + '-printf', '%P\n', + check: false) foreach spa_header : spa_headers.stdout().split('\n') if spa_header.endswith('.h') # skip empty lines ext = have_cpp ? 'cpp' : 'c'