diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-10-03 20:12:59 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-10-04 00:10:03 +0200 |
commit | afd3d9316ce3c48cd7f7dbae64be0f8bcb756ba6 (patch) | |
tree | e53fe41f65e71aae9257aa37d8e1fd9ad6706439 /gnu/packages/python.scm | |
parent | 8a55e217ad3a6af96f9e05eb676616224fde509f (diff) | |
download | guix-afd3d9316ce3c48cd7f7dbae64be0f8bcb756ba6.tar.gz |
Use "normalized codesets" everywhere.
In other words, change "xx_YY.UTF-8" to "xx_YY.utf8". * guix/profiles.scm (ca-certificate-bundle): Use "en_US.utf8" instead of "en_US.UTF-8". * guix/packages.scm (patch-and-repack): Likewise. * guix/build/gnu-build-system.scm (install-locale): Likewise. * guix/build-system/gnu.scm (gnu-build, gnu-cross-build): Likewise. * gnu/packages/python.scm (python-ipython): Likewise. * gnu/packages/gawk.scm (gawk): Likewise. * build-aux/hydra/demo-os.scm: Likewise. * gnu/packages/guile.scm (guile-ncurses)[arguments]: Remove 'change-locale' phase.
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 708ba29d24..fd1a2d3601 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3665,7 +3665,7 @@ cluster without needing to write any wrapper code yourself.") (man1 (string-append data "/man/man1")) (info (string-append data "/info")) (examples (string-append doc "/examples"))) - (setenv "LANG" "en_US.UTF-8") + (setenv "LANG" "en_US.utf8") (with-directory-excursion "docs" ;; FIXME: html and pdf fail to build ;; (system* "make" "html") |