guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#68575] [PATCH core-updates 1/3] gnu: icedtea-7: Fix build.


From: Greg Hogan
Subject: [bug#68575] [PATCH core-updates 1/3] gnu: icedtea-7: Fix build.
Date: Thu, 18 Jan 2024 21:59:33 +0000

* gnu/packages/java.scm (icedtea-7)[arguments]: Use C.UTF-8 locale in
'install-keystore phase.

Change-Id: I6da65dd8aaea6fc95f7f0d269ed5ab45c26ce21d
---
 gnu/packages/java.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 5e910e9749..ce75c1cadb 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -577,8 +577,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")
 
                  (for-each import-cert (find-files certs-dir "\\.pem$"))
                  (mkdir-p (string-append (assoc-ref outputs "out")
-- 
2.40.1






reply via email to

[Prev in Thread] Current Thread [Next in Thread]