diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2017-12-18 12:11:21 -0500 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2017-12-18 14:51:12 -0500 |
commit | 8c850b34659b759af43131ffe5979a89dd5e8647 (patch) | |
tree | 9b2c4b2aedbede6c057babcba96878c2bc441548 /ext | |
parent | 11af685d64571ea696723f959b467656c974c945 (diff) | |
download | gstreamer-plugins-bad-8c850b34659b759af43131ffe5979a89dd5e8647.tar.gz |
lv2: Recursively monitor the lv2 plugin path
Otherwise we might not update the cache when needed.
https://bugzilla.gnome.org/show_bug.cgi?id=791717
Diffstat (limited to 'ext')
-rw-r--r-- | ext/lv2/gstlv2.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/lv2/gstlv2.c b/ext/lv2/gstlv2.c index 2c8253dc8..181f3ca5f 100644 --- a/ext/lv2/gstlv2.c +++ b/ext/lv2/gstlv2.c @@ -255,7 +255,8 @@ plugin_init (GstPlugin * plugin) side_right_role = lilv_new_uri (world, LV2_PORT_GROUPS__sideRight); gst_plugin_add_dependency_simple (plugin, - "LV2_PATH", GST_LV2_DEFAULT_PATH, NULL, GST_PLUGIN_DEPENDENCY_FLAG_NONE); + "LV2_PATH", GST_LV2_DEFAULT_PATH, NULL, + GST_PLUGIN_DEPENDENCY_FLAG_RECURSE); /* ensure GstAudioChannelPosition type is registered */ if (!gst_audio_channel_position_get_type ()) |