meson: Fix path for webrtc validate tests
authorNicolas Dufresne <nicolas.dufresne@collabora.com>
Wed, 26 Oct 2022 17:41:10 +0000 (13:41 -0400)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Wed, 26 Oct 2022 18:16:25 +0000 (18:16 +0000)
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: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3273>

subprojects/gst-examples/webrtc/check/meson.build

index a481b15..f8873d4 100644 (file)
@@ -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)