From 968a26e6f6073f518b1b61f22ce61f6d008037ae Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Mon, 21 Feb 2022 11:35:41 -0500 Subject: [PATCH] devenv: Prepend to GST_PLUGIN_PATH Use may have their own GST_PLUGIN_PATH, or a custom user subproject could have their own plugins too. This is also what gst-env.py does. Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 52c8aafaf1..53bdcf56f1 100644 --- a/meson.build +++ b/meson.build @@ -234,7 +234,7 @@ pathsep = host_machine.system() == 'windows' ? ';' : ':' all_plugins_paths = pathsep.join(all_plugins_paths) devenv = environment() -devenv.set('GST_PLUGIN_PATH', all_plugins_dirs) +devenv.prepend('GST_PLUGIN_PATH', all_plugins_dirs) devenv.set('CURRENT_GST', meson.current_source_dir()) devenv.set('GST_VERSION', meson.project_version()) devenv.set('GST_ENV', 'gst-' + meson.project_version())