From 765cf8679f68a092673c4be739eede887b2bf62e Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Thu, 2 Feb 2017 14:29:30 +0100 Subject: [PATCH] validate: meson: fix --validate-tools-path argument The path passed to --validate-tools-path was wrong when building using gst-build, preventing the launcher to find the validate tools. https://bugzilla.gnome.org/show_bug.cgi?id=777982 Differential Revision: https://phabricator.freedesktop.org/D1634 --- validate/tests/launcher_tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate/tests/launcher_tests/meson.build b/validate/tests/launcher_tests/meson.build index 75a03c14c2..438fb183bd 100644 --- a/validate/tests/launcher_tests/meson.build +++ b/validate/tests/launcher_tests/meson.build @@ -14,6 +14,6 @@ if launcher.found() test(test_name, launcher, args: ['-o', meson.build_root() + '/validate-launcher-output/', meson.current_source_dir() + '/test_validate.py', '--validate-tools-path', - meson.build_root() + '/validate/tools/'], + join_paths(meson.current_build_dir(), '..', '..', 'tools')], env: env) endif