From 6beadb90624bba04dc6a27d0daae026e6699f43c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 24 Oct 2016 00:34:15 +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 3533250d0f..7d6b24b95c 100644 --- a/tests/check/meson.build +++ b/tests/check/meson.build @@ -134,7 +134,7 @@ pluginsdirs = [ ] if not meson.is_subproject() pkgconfig = find_program('pkg-config') runcmd = run_command(pkgconfig, '--variable=pluginsdir', - 'gstreamer-' + apiversion, 'gstreamer-plugins-base-' + api_version) + 'gstreamer-' + api_version, 'gstreamer-plugins-base-' + api_version) if runcmd.returncode() == 0 pluginsdirs = runcmd.stdout().split()