From 683d0456d9bf0d239abdc336d08ee4d71f027260 Mon Sep 17 00:00:00 2001 From: Sebastian Fricke Date: Tue, 22 Feb 2022 09:20:38 +0100 Subject: [PATCH] tests: Remove deleted gst-env option from test The `gstbuilddir` option has been removed by reverting the commit 879126a3. But the later commit 1babccfe503 uses the option within a test. Remove the mentioned option from the test. Fixes: 1babccfe503 Fix using overrides when not building PyGObject Part-of: --- tests/python/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/python/meson.build b/tests/python/meson.build index 14f5af4b84..2a14fa192f 100644 --- a/tests/python/meson.build +++ b/tests/python/meson.build @@ -14,7 +14,6 @@ if run_command(python, '-c', 'import gi', check: false).returncode() != 0 endif test('python-overrides-devenv', setenv, args: ['--builddir=@0@'.format(meson.project_build_root()), - '--gstbuilddir=@0@'.format(meson.current_build_dir() / '..' / '..'), '--srcdir=@0@'.format(meson.project_source_root()), meson.current_source_dir() / 'python-devenv-overrides.py'])