diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-11-10 18:20:23 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-11-11 23:17:42 +0100 |
commit | 19206eee69e8c22d63104af1b7f1f815969bff7f (patch) | |
tree | 1a4118fcdc1f9ab65f326b9bb1d6f7a8178680d0 /tests/gexp.scm | |
parent | 8c0c223fabdda37611b3df1f5789082a47507b09 (diff) | |
download | guix-19206eee69e8c22d63104af1b7f1f815969bff7f.tar.gz |
grafts: Run with a UTF-8 locale.
Fixes <https://issues.guix.gnu.org/55968>. Reported by Maxime Devos <maximedevos@telenet.be>. * guix/grafts.scm (%graft-with-utf8-locale?): New parameter. (graft-derivation/shallow)[glibc-locales, set-utf8-locale]: New variables. [build]: Use 'set-utf8-locale'. * tests/gexp.scm, tests/grafts.scm, tests/packages.scm: Set '%graft-with-utf8-locale?' to #f.
Diffstat (limited to 'tests/gexp.scm')
-rw-r--r-- | tests/gexp.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/gexp.scm b/tests/gexp.scm index 6d57ac5d7a..7a90f8dcbf 100644 --- a/tests/gexp.scm +++ b/tests/gexp.scm @@ -21,6 +21,7 @@ #:use-module (guix store) #:use-module (guix monads) #:use-module (guix gexp) + #:use-module ((guix grafts) #:select (%graft-with-utf8-locale?)) #:use-module (guix derivations) #:use-module (guix packages) #:use-module (guix build-system trivial) @@ -49,6 +50,9 @@ ;; Globally disable grafts because they can trigger early builds. (%graft? #f) +;; When grafting, do not add dependency on 'glibc-utf8-locales'. +(%graft-with-utf8-locale? #f) + ;; For white-box testing. (define (gexp-inputs x) ((@@ (guix gexp) gexp-inputs) x)) |