mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
build-system/gnu: Set $LC_ALL (or similar) to the chosen locale.
Suggested by Mark H Weaver. * guix/build/utils.scm (locale-category->string): New procedure. * guix/build/gnu-build-system.scm (install-locale): Add 'setenv' call.
This commit is contained in:
parent
7184b4b1bd
commit
251e8b2ee8
2 changed files with 31 additions and 3 deletions
|
@ -106,8 +106,12 @@ (define* (install-locale #:key
|
|||
(catch 'system-error
|
||||
(lambda ()
|
||||
(setlocale locale-category locale)
|
||||
(format (current-error-port) "using '~a' locale for category ~a~%"
|
||||
locale locale-category)
|
||||
|
||||
;; While we're at it, pass it to sub-processes.
|
||||
(setenv (locale-category->string locale-category) locale)
|
||||
|
||||
(format (current-error-port) "using '~a' locale for category ~s~%"
|
||||
locale (locale-category->string locale-category))
|
||||
#t)
|
||||
(lambda args
|
||||
;; This is known to fail for instance in early bootstrap where locales
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
(define-module (guix build utils)
|
||||
#:use-module (srfi srfi-1)
|
||||
#:use-module (srfi srfi-11)
|
||||
#:use-module (srfi srfi-60)
|
||||
#:use-module (ice-9 ftw)
|
||||
#:use-module (ice-9 match)
|
||||
#:use-module (ice-9 regex)
|
||||
|
@ -65,7 +66,9 @@ (define-module (guix build utils)
|
|||
patch-/usr/bin/file
|
||||
fold-port-matches
|
||||
remove-store-references
|
||||
wrap-program))
|
||||
wrap-program
|
||||
|
||||
locale-category->string))
|
||||
|
||||
|
||||
;;;
|
||||
|
@ -909,6 +912,27 @@ (define (export-variable lst)
|
|||
(symlink wrapper prog-tmp)
|
||||
(rename-file prog-tmp prog)))
|
||||
|
||||
|
||||
;;;
|
||||
;;; Locales.
|
||||
;;;
|
||||
|
||||
(define (locale-category->string category)
|
||||
"Return the name of locale category CATEGORY, one of the 'LC_' constants.
|
||||
If CATEGORY is a bitwise or of several 'LC_' constants, an approximation is
|
||||
returned."
|
||||
(letrec-syntax ((convert (syntax-rules ()
|
||||
((_)
|
||||
(number->string category))
|
||||
((_ first rest ...)
|
||||
(if (= first category)
|
||||
(symbol->string 'first)
|
||||
(convert rest ...))))))
|
||||
(convert LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE
|
||||
LC_IDENTIFICATION LC_MEASUREMENT LC_MESSAGES LC_MONETARY
|
||||
LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE
|
||||
LC_TIME)))
|
||||
|
||||
;;; Local Variables:
|
||||
;;; eval: (put 'call-with-output-file/atomic 'scheme-indent-function 1)
|
||||
;;; eval: (put 'call-with-ascii-input-file 'scheme-indent-function 1)
|
||||
|
|
Loading…
Reference in a new issue