aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/libraries/drumstick/drumstick-plugins.patch
blob: cbb0a0e3489665be2523878f5df07c213494ebba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Make it look for its plugin in its own installation directory.

--- a/library/rt/backendmanager.cpp
+++ b/library/rt/backendmanager.cpp
@@ -159,6 +159,7 @@ namespace rt {
         foreach(const QString& path, QCoreApplication::libraryPaths()) {
             d->appendDir( path + QDir::separator() + QSTR_DRUMSTICK, result );
         }
+        d->appendDir( "@out@/lib/drumstick", result );
         return result;
     }