diff options
author | Pkill -9 <pkill9@runbox.com> | 2018-12-24 19:52:59 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-12-26 18:40:49 +0100 |
commit | b12f8720f574c75e8b65b8a076e98caa61830b62 (patch) | |
tree | 916449bd502ec0b68b22363397939a77128e5980 /gnu/system.scm | |
parent | 10275b7466853fce6d5b925f0267c20c304ba25a (diff) | |
download | patches-b12f8720f574c75e8b65b8a076e98caa61830b62.tar patches-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>
Diffstat (limited to 'gnu/system.scm')
-rw-r--r-- | gnu/system.scm | 2 |
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"))) |