guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/04: system: Fix missing space in boot labels for kernels that are inf


From: guix-commits
Subject: 01/04: system: Fix missing space in boot labels for kernels that are inferior packages
Date: Wed, 26 Dec 2018 12:42:23 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit b12f8720f574c75e8b65b8a076e98caa61830b62
Author: Pkill -9 <address@hidden>
Date:   Mon Dec 24 19:52:59 2018 +0000

    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 <address@hidden>
---
 gnu/system.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/system.scm b/gnu/system.scm
index 146af7c..ee48f48 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")))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]