Skip to content
Snippets Groups Projects
Commit db793e6c authored by Tim-Philipp Müller's avatar Tim-Philipp Müller :tropical_fish:
Browse files

meson: fix build outside of gst-all

parent 0555c096
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,7 @@ pluginsdirs = [ ] ...@@ -25,7 +25,7 @@ pluginsdirs = [ ]
# case where GStreamer is another subproject here. # case where GStreamer is another subproject here.
if not meson.is_subproject() if not meson.is_subproject()
pkgconfig = find_program('pkg-config') 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 if runcmd.returncode() == 0
pluginsdirs = runcmd.stdout().split() pluginsdirs = runcmd.stdout().split()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment