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>
This commit is contained in:
parent
10275b7466
commit
b12f8720f5
@ -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")))
|
||||
|
Loading…
Reference in New Issue
Block a user