From: Xavier Claessens Date: Wed, 31 Aug 2022 01:15:25 +0000 (-0400) Subject: meson: Make sure devenv uses tools linked on gst-full X-Git-Tag: 1.22.0~1034 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fe40a7397342c962d5937b8bbf3c109d15378b3b;p=platform%2Fupstream%2Fgstreamer.git meson: Make sure devenv uses tools linked on gst-full Part-of: --- diff --git a/meson.build b/meson.build index 3967832..e338a11 100644 --- a/meson.build +++ b/meson.build @@ -261,7 +261,14 @@ pathsep = host_machine.system() == 'windows' ? ';' : ':' all_plugins_paths = pathsep.join(all_plugins_paths) devenv = environment() -devenv.prepend('GST_PLUGIN_PATH', all_plugins_dirs) +if not building_full + devenv.prepend('GST_PLUGIN_PATH', all_plugins_dirs) +else + # Make sure the current build directory is first in PATH so we prefer tools + # built here that links on gst-full instead instead of those built in + # subprojects. + devenv.prepend('PATH', meson.current_build_dir()) +endif devenv.set('CURRENT_GST', meson.current_source_dir()) devenv.set('GST_VERSION', meson.project_version()) devenv.set('GST_ENV', 'gst-' + meson.project_version())