mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-01-07 09:45:25 +00:00
meson: Printing a list is only available with meson >=1.3
Fixes https://gitlab.freedesktop.org/tpm/gstreamer/-/jobs/60108579 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1633>
This commit is contained in:
parent
8bd94e284d
commit
b73bea4a90
1 changed files with 6 additions and 1 deletions
|
@ -410,7 +410,12 @@ foreach plugin_name, details: plugins
|
|||
endif
|
||||
deps_cache += {dep_name: dep}
|
||||
if not dep.found()
|
||||
debug(f'@plugin_name@ dependency @dep_name@ @dep_ver@ not found, skipping')
|
||||
if dep_ver.length() != 0
|
||||
dep_ver_msg = ' '.join(dep_ver)
|
||||
debug(f'@plugin_name@ dependency @dep_name@ @dep_ver_msg@ not found, skipping')
|
||||
else
|
||||
debug(f'@plugin_name@ dependency @dep_name@ not found, skipping')
|
||||
endif
|
||||
plugin_deps_found = false
|
||||
break
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue