mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
store: 'set-build-options' sends LC_MESSAGES, not LC_ALL.
* guix/store.scm (set-build-options): Change #:locale default value to (setlocale LC_MESSAGES).
This commit is contained in:
parent
aba8def46d
commit
739f630947
1 changed files with 1 additions and 1 deletions
|
@ -820,7 +820,7 @@ (define* (set-build-options server
|
||||||
(terminal-columns (terminal-columns))
|
(terminal-columns (terminal-columns))
|
||||||
|
|
||||||
;; Locale of the client.
|
;; Locale of the client.
|
||||||
(locale (false-if-exception (setlocale LC_ALL))))
|
(locale (false-if-exception (setlocale LC_MESSAGES))))
|
||||||
;; Must be called after `open-connection'.
|
;; Must be called after `open-connection'.
|
||||||
|
|
||||||
(define buffered
|
(define buffered
|
||||||
|
|
Loading…
Reference in a new issue