diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-09-02 15:56:47 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-09-02 17:17:37 +0200 |
commit | 739f6309478d8ab8501bb653ceb2f634c8560f55 (patch) | |
tree | c8b6bf8e27a95c35c7b5fcdd00a4a677e31527b2 | |
parent | aba8def46d392b3ef2278d16a2c9708fab05c6fd (diff) | |
download | guix-739f6309478d8ab8501bb653ceb2f634c8560f55.tar.gz |
store: 'set-build-options' sends LC_MESSAGES, not LC_ALL.
* guix/store.scm (set-build-options): Change #:locale default value to (setlocale LC_MESSAGES).
-rw-r--r-- | guix/store.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/store.scm b/guix/store.scm index 6bb6f43f56..d859ea33ed 100644 --- a/guix/store.scm +++ b/guix/store.scm @@ -820,7 +820,7 @@ encoding conversion errors." (terminal-columns (terminal-columns)) ;; Locale of the client. - (locale (false-if-exception (setlocale LC_ALL)))) + (locale (false-if-exception (setlocale LC_MESSAGES)))) ;; Must be called after `open-connection'. (define buffered |