1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Jeremy Bicha <jbicha@ubuntu.com>
Date: Tue, 13 Sep 2016 23:17:34 -0400
Subject: Load plugins from non-multiarch directory also
---
shell/rb-shell.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/shell/rb-shell.c b/shell/rb-shell.c
index 5519c4d..62452de 100644
--- a/shell/rb-shell.c
+++ b/shell/rb-shell.c
@@ -851,6 +851,9 @@ construct_plugins (RBShell *shell)
peas_engine_add_search_path (shell->priv->plugin_engine,
plugindir,
plugindatadir);
+ peas_engine_add_search_path (shell->priv->plugin_engine,
+ "/usr/lib/rhythmbox/plugins",
+ plugindatadir);
g_free (plugindir);
g_free (plugindatadir);
|