mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: openjdk9: Fix build.
* gnu/packages/java.scm (openjdk9)[arguments]: Use C.UTF-8 locale in 'install-keystore phase. Change-Id: I7fb54b917a058584bcdee0fb5575b8eaba4f7edd Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: Ifd267ce38fa5b3a1c4712bde5345f2ef864cde06
This commit is contained in:
parent
0164655e1d
commit
cc666a69f7
1 changed files with 2 additions and 2 deletions
|
@ -1035,8 +1035,8 @@ (define (import-cert cert)
|
|||
|
||||
;; This is necessary because the certificate directory contains
|
||||
;; files with non-ASCII characters in their names.
|
||||
(setlocale LC_ALL "en_US.utf8")
|
||||
(setenv "LC_ALL" "en_US.utf8")
|
||||
(setlocale LC_ALL "C.UTF-8")
|
||||
(setenv "LC_ALL" "C.UTF-8")
|
||||
|
||||
(copy-file (string-append (assoc-ref outputs "out")
|
||||
"/lib/security/cacerts")
|
||||
|
|
Loading…
Reference in a new issue