From db793e6cce50028adf7754e64b075a497473e4da Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 24 Oct 2016 00:35:23 +0100 Subject: [PATCH] meson: fix build outside of gst-all --- 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 19bfdc4..38dc803 100644 --- a/tests/check/meson.build +++ b/tests/check/meson.build @@ -25,7 +25,7 @@ pluginsdirs = [ ] # case where GStreamer is another subproject here. if not meson.is_subproject() pkgconfig = find_program('pkg-config') - runcmd = run_command(pkgconfig, '--variable=pluginsdir', 'gstreamer-' + apiversion) + runcmd = run_command(pkgconfig, '--variable=pluginsdir', 'gstreamer-' + api_version) if runcmd.returncode() == 0 pluginsdirs = runcmd.stdout().split() -- 2.7.4