summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-06-04 23:08:59 +0200
committerLudovic Courtès <ludo@gnu.org>2014-06-04 23:08:59 +0200
commitea31dbbc18e616196ed7bda61e29178658540e7e (patch)
treee78d02ec2170a8f01491057ac431f0655b3b8f29 /gnu
parente2fcc23a3a562b9efa55530f442bba4bd0436d4f (diff)
downloadpatches-ea31dbbc18e616196ed7bda61e29178658540e7e.tar
patches-ea31dbbc18e616196ed7bda61e29178658540e7e.tar.gz
install: Add missing argv[0] in Info invocation.
* gnu/system/install.scm (log-to-info): Add "info" as second argument to 'execl'.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/system/install.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/install.scm b/gnu/system/install.scm
index 707f6b6c86..06f8a3f058 100644
--- a/gnu/system/install.scm
+++ b/gnu/system/install.scm
@@ -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")))