install: Add missing argv[0] in Info invocation.

* gnu/system/install.scm (log-to-info): Add "info" as second argument to
  'execl'.
This commit is contained in:
Ludovic Courtès 2014-06-04 23:08:59 +02:00
parent e2fcc23a3a
commit ea31dbbc18

@ -37,7 +37,7 @@
"Return a script that spawns the Info reader on the right section of the
manual."
(gexp->script "log-to-info"
#~(execl (string-append #$texinfo-4 "/bin/info")
#~(execl (string-append #$texinfo-4 "/bin/info") "info"
"-d" "/run/current-system/profile/share/info"
"-f" (string-append #$guix "/share/info/guix.info")
"-n" "System Configuration")))