diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2023-08-18 17:48:34 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2023-08-18 17:48:34 +0800 |
commit | 4187638b60de09d97d1d4645c7077d043d6fd09d (patch) | |
tree | e14999b4a988cb2f7d927580044016362514ae71 /gnu/packages/kde-plasma.scm | |
parent | 4c5373715d7d7b30273b70802cffdb972384cf1c (diff) |
gnu: plasma-workspace: Fix kinit path.
Follow up of 731413a680a33ed1ad909e41e5b388561a63f365.
* gnu/packages/kde-plasma.scm (plasma-workspace)[arguments]<#:phases>:
Replace '/lib/libexec' with '/libexec'.
Diffstat (limited to 'gnu/packages/kde-plasma.scm')
-rw-r--r-- | gnu/packages/kde-plasma.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm index e699111429..11586a6ce2 100644 --- a/gnu/packages/kde-plasma.scm +++ b/gnu/packages/kde-plasma.scm @@ -2500,7 +2500,7 @@ sensors, process information and other system resources.") (substitute* "startkde/plasma-session/startup.cpp" (("CMAKE_INSTALL_FULL_LIBEXECDIR_KF5..") (string-append "\"" kinit - "/lib/libexec/kf5"))) + "/libexec/kf5"))) (substitute* (list "startkde/startplasma-wayland.cpp" "startkde/startplasma-x11.cpp") |