Merge pull request #27157 from bkchr/kwallet_dbus_fix

kwallet: Fix bug that dbus could not find the kwallet service
This commit is contained in:
Thomas Tuegel 2017-07-06 06:12:07 -05:00 committed by GitHub
commit 039dda7a27
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,9 @@
diff --git a/src/runtime/kwalletd/org.kde.kwalletd5.service.in b/src/runtime/kwalletd/org.kde.kwalletd5.service.in
index 76eb90e..7a78e83 100644
--- a/src/runtime/kwalletd/org.kde.kwalletd5.service.in
+++ b/src/runtime/kwalletd/org.kde.kwalletd5.service.in
@@ -1,3 +1,3 @@
[D-BUS Service]
Name=org.kde.kwalletd5
-Exec=@CMAKE_INSTALL_PREFIX@/bin/kwalletd5
+Exec=@CMAKE_INSTALL_BINDIR@/kwalletd5

View File

@ -15,4 +15,5 @@ mkDerivation {
knotifications kservice kwidgetsaddons kwindowsystem libgcrypt qgpgme
];
propagatedBuildInputs = [ qtbase ];
patches = [ ./kwallet-dbus.patch ];
}