diff options
author | Petter <petter@mykolab.ch> | 2016-03-03 10:47:39 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-03-03 17:42:47 +0100 |
commit | d0a65256a3748d43fbc324c36e909eda10ebd3fe (patch) | |
tree | b29b8d8b1ea298244811ebe1dec6d9351ec32f5f /gnu/system.scm | |
parent | 16cc99610d63d67a7f8968740d4249cbaac73277 (diff) | |
download | gnu-guix-d0a65256a3748d43fbc324c36e909eda10ebd3fe.tar gnu-guix-d0a65256a3748d43fbc324c36e909eda10ebd3fe.tar.gz |
system: GRUB menu entry says "beta" instead of "alpha"
* gnu/system.scm (kernel->grub-label): Change "alpha" to "beta'.
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 29b3ebc3c1..c0037a5820 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -702,7 +702,7 @@ listed in OS. The C library expects to find it under (string-append "GNU with " (string-titlecase (package-name kernel)) " " (package-version kernel) - " (alpha)")) + " (beta)")) (define (store-file-system file-systems) "Return the file system object among FILE-SYSTEMS that contains the store." |