diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-01-29 23:59:27 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-01-30 00:09:32 +0100 |
commit | 473b03b3c6fbca909e18dbb5888ac5a98992207a (patch) | |
tree | f193b7488453c4794f67c1bec157807788af42f8 /guix-build.in | |
parent | bdcf35a6b294c1db7ce78a5550ba51e067863069 (diff) | |
download | patches-473b03b3c6fbca909e18dbb5888ac5a98992207a.tar patches-473b03b3c6fbca909e18dbb5888ac5a98992207a.tar.gz |
Gracefully handle failure to install the current locale.
* guix/ui.scm (install-locale): New procedure.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Use it instead of (setlocale LC_ALL "").
Diffstat (limited to 'guix-build.in')
-rw-r--r-- | guix-build.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix-build.in b/guix-build.in index 4d3db0aa6d..eb8d2fa016 100644 --- a/guix-build.in +++ b/guix-build.in @@ -220,7 +220,7 @@ Build the given PACKAGE-OR-DERIVATION and return their output paths.\n")) name version) (leave (_ "~A: unknown package~%") name)))))) - (setlocale LC_ALL "") + (install-locale) (textdomain "guix") (setvbuf (current-output-port) _IOLBF) (setvbuf (current-error-port) _IOLBF) |