From 9ccd144421a8ed779751bbb2083a6030db28e698 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 24 Oct 2016 00:28:27 +0100 Subject: [PATCH] meson: fix build outside of gst-all Unknown variable "apiversion". --- tests/check/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/check/meson.build b/tests/check/meson.build index 2d4b7b831b..62ab7b4385 100644 --- a/tests/check/meson.build +++ b/tests/check/meson.build @@ -98,7 +98,7 @@ pluginsdirs = [ ] if not meson.is_subproject() pkgconfig = find_program('pkg-config') runcmd = run_command(pkgconfig, '--variable=pluginsdir', - 'gstreamer-' + apiversion) + 'gstreamer-' + api_version) if runcmd.returncode() == 0 pluginsdirs = runcmd.stdout().split()