diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-11-07 21:30:36 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-08 01:05:35 +0100 |
commit | 91cc5aff5a33b1c877466039f851c2379555876f (patch) | |
tree | 1321ada08ff9ac710ebe2741e6805a7eea3e8fb3 /gnu/services | |
parent | 0fa22d5a7cc2deffa11ebddfac620fde34b3ec62 (diff) | |
download | guix-91cc5aff5a33b1c877466039f851c2379555876f.tar guix-91cc5aff5a33b1c877466039f851c2379555876f.tar.gz |
services: xorg: Add argv[0] in X invocation.
* gnu/services/xorg.scm (xorg-start-command): Add missing argv[0] in
'execl' call.
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/xorg.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm index b29f2e46c5..39e76febeb 100644 --- a/gnu/services/xorg.scm +++ b/gnu/services/xorg.scm @@ -117,6 +117,7 @@ EndSection (setenv "XKB_BINDIR" (string-append #$xkbcomp "/bin")) (apply execl (string-append #$xorg-server "/bin/X") + (string-append #$xorg-server "/bin/X") ;argv[0] "-ac" "-logverbose" "-verbose" "-xkbdir" (string-append #$xkeyboard-config "/share/X11/xkb") "-config" #$config |