diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-04-20 19:36:41 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-04-21 00:06:40 +0200 |
commit | 7d903d2ff7e17406c0650541f35e37a99dab8759 (patch) | |
tree | 5427812b0e7816c8800389747b33e29186141bfa /gnu/services/spice.scm | |
parent | b6cb4aeff87ce89c6a8d09100920f0205ab73da4 (diff) | |
download | guix-7d903d2ff7e17406c0650541f35e37a99dab8759.tar.gz |
services: Don't use the deprecated 'make-forkexec-constructor' call.
Passing 'make-forkexec-constructor' a string or several string arguments has been deprecated since dmd 0.1. * gnu/services/base.scm (rngd-service-type): In 'start' method, pass a list as the first argument to 'make-forkexec-constructor'. * gnu/services/desktop.scm (bluetooth-shepherd-service): Likewise. * gnu/services/spice.scm (spice-vdagent-shepherd-service): Likewise.
Diffstat (limited to 'gnu/services/spice.scm')
-rw-r--r-- | gnu/services/spice.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/spice.scm b/gnu/services/spice.scm index 8a835fe78e..fd85dc234f 100644 --- a/gnu/services/spice.scm +++ b/gnu/services/spice.scm @@ -54,7 +54,7 @@ (documentation "Spice vdagentd service") (requirement '(udev)) (provision '(spice-vdagentd)) - (start #~(make-forkexec-constructor #$@spice-vdagentd-command)) + (start #~(make-forkexec-constructor '#$spice-vdagentd-command)) (stop #~(make-kill-destructor))))) (define spice-vdagent-profile |