Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.com>2022-09-02 17:15:15 +0300
committerSebastian Dröge <slomo@coaxion.net>2022-09-03 01:00:57 +0300
commit184f862307fec194f58f68fbe750e9fd94771d85 (patch)
tree377f2c065f25df59a80592d19c2d4062976d8410 /meson.build
parentd1d7e99978239022484e3298640154a262a6ee51 (diff)
meson: Fix deprecation warning
meson.build_root() has been renamed to meson.global_build_root() to not be confused with meson.project_build_root().
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 2232baa79..4f7d38cd2 100644
--- a/meson.build
+++ b/meson.build
@@ -203,7 +203,7 @@ rs_plugins = custom_target('gst-plugins-rs',
'build',
meson.current_build_dir(),
meson.current_source_dir(),
- meson.build_root(),
+ meson.global_build_root(),
target,
include,
extra_env_str,