From 4fb9f2a2b4c4123812949f16ebe53bf3a6c22670 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Wed, 26 Oct 2022 13:41:10 -0400 Subject: [PATCH] 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: --- subprojects/gst-examples/webrtc/check/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/subprojects/gst-examples/webrtc/check/meson.build b/subprojects/gst-examples/webrtc/check/meson.build index a481b15421..f8873d4f3b 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)