gexp: 'mixed-text-file' UTF-8-encodes its output.

* guix/gexp.scm (mixed-text-file)[build]: Call 'set-port-encoding!'.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Andrew Tropin 2021-06-18 07:15:36 +03:00 committed by Ludovic Courtès
parent 57d4fc7b1a
commit 1f3d7b4534
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1921,6 +1921,7 @@ (define* (mixed-text-file name #:rest text)
(define build
(gexp (call-with-output-file (ungexp output "out")
(lambda (port)
(set-port-encoding! port "UTF-8")
(display (string-append (ungexp-splicing text)) port)))))
(computed-file name build))