mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
meson: Fix warning about check kwarg
This place was missed when we fixed this everywhere else. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2764>
This commit is contained in:
parent
cb73ad2b6f
commit
ea4a5942d9
1 changed files with 2 additions and 5 deletions
|
@ -11,11 +11,8 @@ if arch != 'x86_64'
|
|||
arch = 'x86_64'
|
||||
endif
|
||||
|
||||
ret = run_command(py3, files('download-binary.py'), meson.project_version(), arch, tar_hash)
|
||||
if ret.returncode() != 0
|
||||
message(ret.stdout())
|
||||
error(ret.stderr())
|
||||
endif
|
||||
ret = run_command(py3, files('download-binary.py'), meson.project_version(), arch, tar_hash,
|
||||
check: true)
|
||||
|
||||
conf = configuration_data()
|
||||
conf.set('SRCDIR', meson.project_source_root())
|
||||
|
|
Loading…
Reference in a new issue