File: plugins_directory.patch

package info (click to toggle)
ugene 51.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 125,712 kB
  • sloc: cpp: 637,632; xml: 212,751; ansic: 81,474; javascript: 5,416; sh: 1,204; python: 771; makefile: 36
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) {