mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-02-03 21:40:40 +01:00
meson: fix a meson warning
run_command() wants a check kwarg now:
WARNING: You should add the boolean check kwarg to the run_command call.
It currently defaults to false,
but it will default to true in future releases of meson.
See also: https://github.com/mesonbuild/meson/issues/9300
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
321458576d
commit
f917661980
1 changed files with 2 additions and 1 deletions
|
|
@ -194,7 +194,8 @@ if yq.found()
|
|||
foreach distro : distributions
|
||||
yq_filter = '.distributions[] | select(.name == "@0@") | .packages | join(" ")'.format(distro)
|
||||
deps = run_command(yq, '-r', yq_filter,
|
||||
meson.source_root() / '.gitlab-ci' / 'config.yml').stdout()
|
||||
meson.source_root() / '.gitlab-ci' / 'config.yml',
|
||||
check: true).stdout()
|
||||
dependencies_config.set('@0@_PACKAGES'.format(distro.to_upper()), deps)
|
||||
endforeach
|
||||
endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue