mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-26 05:21:00 +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/1632>
This commit is contained in:
parent
a7764ff033
commit
345edeb947
1 changed files with 6 additions and 1 deletions
|
@ -414,7 +414,12 @@ foreach plugin_name, details: plugins
|
||||||
endif
|
endif
|
||||||
deps_cache += {dep_name: dep}
|
deps_cache += {dep_name: dep}
|
||||||
if not dep.found()
|
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
|
plugin_deps_found = false
|
||||||
break
|
break
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue