File: plugins_directory.patch

package info (click to toggle)
ugene 52.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 133,376 kB
  • sloc: cpp: 747,593; xml: 212,891; ansic: 82,871; javascript: 5,416; yacc: 1,768; sh: 1,256; python: 771; perl: 226; makefile: 37
file content (17 lines) | stat: -rw-r--r-- 538 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: looking for plugins in their Debian install directory
Author: Pierre Gruet <pgt@debian.org>
Bug-Debian: https://bugs.debian.org/1071435
Forwarded: not-needed
Last-Update: 2024-05-22

--- a/src/corelibs/U2Private/src/PluginSupportImpl.cpp
+++ b/src/corelibs/U2Private/src/PluginSupportImpl.cpp
@@ -327,7 +327,7 @@
         }
     }
 #endif
-    return QDir(AppContext::getWorkingDirectoryPath() + "/plugins");
+    return QDir("/usr/lib/ugene/plugins");
 }
 
 bool PluginSupportImpl::isDefaultPluginsDir(const QString& url) {