guix-commits
[Top][All Lists]
Advanced

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

01/02: system: install: Add default libcs to gc-roots.


From: guix-commits
Subject: 01/02: system: install: Add default libcs to gc-roots.
Date: Mon, 8 Jun 2020 04:54:42 -0400 (EDT)

mothacehe pushed a commit to branch master
in repository guix.

commit ea5d9bf9916d532005842f220f7da6e522151f6a
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Sun Jun 7 15:39:39 2020 +0200

    system: install: Add default libcs to gc-roots.
    
    During the installation, it may be needed to build locales that are not
    covered by glibc-utf8-locales. Make sure that the libraries required to 
build
    locales are available.
    
    This is a follow-up of 0eed77127592323d89f56c215a15374a1aaae110.
    
    * gnu/system/install.scm (installation-os)[services]: Add
    %default-locale-libcs to gc-root-service-type.
---
 gnu/system/install.scm | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/gnu/system/install.scm b/gnu/system/install.scm
index fe49ffd..d0ff2e7 100644
--- a/gnu/system/install.scm
+++ b/gnu/system/install.scm
@@ -32,6 +32,7 @@
   #:use-module ((guix packages) #:select (package-version))
   #:use-module ((guix store) #:select (%store-prefix))
   #:use-module (gnu installer)
+  #:use-module (gnu system locale)
   #:use-module (gnu services dbus)
   #:use-module (gnu services networking)
   #:use-module (gnu services shepherd)
@@ -439,10 +440,12 @@ Access documentation at any time by pressing 
Alt-F2.\x1b[0m
           ;; things needed by 'profile-derivation' to minimize the amount of
           ;; download.
           (service gc-root-service-type
-                   (list bare-bones-os
-                         glibc-utf8-locales
-                         texinfo
-                         guile-3.0))
+                   (append
+                    (list bare-bones-os
+                          glibc-utf8-locales
+                          texinfo
+                          guile-3.0)
+                    %default-locale-libcs))
 
           ;; Machines without Kernel Mode Setting (those with many old and
           ;; current AMD GPUs, SiS GPUs, ...) need uvesafb to show the GUI



reply via email to

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