aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPkill -9 <pkill9@runbox.com>2018-12-24 19:52:59 +0000
committerLudovic Courtès <ludo@gnu.org>2018-12-26 18:40:49 +0100
commitb12f8720f574c75e8b65b8a076e98caa61830b62 (patch)
tree916449bd502ec0b68b22363397939a77128e5980
parent10275b7466853fce6d5b925f0267c20c304ba25a (diff)
downloadguix-b12f8720f574c75e8b65b8a076e98caa61830b62.tar
guix-b12f8720f574c75e8b65b8a076e98caa61830b62.tar.gz
system: Fix missing space in boot labels for kernels that are inferior packages
* gnu/system.scm (kernel->boot-label): Add a missing space between the kernel's package name and package version for inferior packages. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--gnu/system.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system.scm b/gnu/system.scm
index 146af7cf08..ee48f48266 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -913,7 +913,7 @@ listed in OS. The C library expects to find it under
" (beta)"))
((inferior-package? kernel)
(string-append "GNU with "
- (string-titlecase (inferior-package-name kernel))
+ (string-titlecase (inferior-package-name kernel)) " "
(inferior-package-version kernel)
" (beta)"))
(else "GNU")))