diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-02-27 09:21:27 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-02-27 09:22:24 +0100 |
commit | 87b6305e72a0d96260716719b041bd7ae84ca230 (patch) | |
tree | 3888cc1e93af2a25d1b6011bbbb9003a168b9023 /gnu | |
parent | a1df45e904caf4d26f6e44d07ce74881bb25ecd9 (diff) | |
download | patches-87b6305e72a0d96260716719b041bd7ae84ca230.tar patches-87b6305e72a0d96260716719b041bd7ae84ca230.tar.gz |
gnu: polkit: Fix 'invoke' call.
* gnu/packages/polkit.scm (polkit)[arguments] <'install>: Add 'apply'.
Fixes a regression introduced in 3c4bbb4c52418c8daf8b0e4605e3912685c9f44a.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/polkit.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/polkit.scm b/gnu/packages/polkit.scm index 76a1aa21c4..a3dbc4ff79 100644 --- a/gnu/packages/polkit.scm +++ b/gnu/packages/polkit.scm @@ -116,7 +116,7 @@ ;; to install in /etc, and to instead install the skeletons in the ;; output directory. (let ((out (assoc-ref outputs "out"))) - (invoke "make" "install" + (apply invoke "make" "install" (string-append "sysconfdir=" out "/etc") (string-append "polkit_actiondir=" out "/share/polkit-1/actions") |