system: Remove "beta" from GRUB menu entries.

* gnu/system.scm (kernel->boot-label): Remove "(beta)".
This commit is contained in:
Ludovic Courtès 2019-04-14 23:30:52 +02:00
parent 7cd38788e6
commit 4ce3a32680
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 2 additions and 4 deletions

View File

@ -911,13 +911,11 @@ listed in OS. The C library expects to find it under
(cond ((package? kernel)
(string-append "GNU with "
(string-titlecase (package-name kernel)) " "
(package-version kernel)
" (beta)"))
(package-version kernel)))
((inferior-package? kernel)
(string-append "GNU with "
(string-titlecase (inferior-package-name kernel)) " "
(inferior-package-version kernel)
" (beta)"))
(inferior-package-version kernel)))
(else "GNU")))
(define (store-file-system file-systems)