From: Nicolas Dufresne Date: Wed, 26 Oct 2022 17:41:10 +0000 (-0400) Subject: meson: Fix path for webrtc validate tests X-Git-Tag: 1.22.0~685 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4fb9f2a2b4c4123812949f16ebe53bf3a6c22670;p=platform%2Fupstream%2Fgstreamer.git meson: Fix path for webrtc validate tests This fixes a crash when trying to run gst-validate-launcher from inside the meson devenv. The error was: ModuleNotFoundError: No module named 'observer' Part-of: --- diff --git a/subprojects/gst-examples/webrtc/check/meson.build b/subprojects/gst-examples/webrtc/check/meson.build index a481b15..f8873d4 100644 --- a/subprojects/gst-examples/webrtc/check/meson.build +++ b/subprojects/gst-examples/webrtc/check/meson.build @@ -23,5 +23,6 @@ endif env = environment() env.prepend('GST_VALIDATE_SCENARIOS_PATH', meson.current_source_dir() / 'validate/scenarios') -env.prepend('GST_VALIDATE_APPS_DIR', meson.current_source_dir() / 'validate') +env.prepend('GST_VALIDATE_APPS_DIR', meson.current_source_dir() / 'validate' / + 'apps') meson.add_devenv(env)