This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new ba406fd9b0 build: Set default-port-encoding and conversion-strategy 
for converting xrefs.
ba406fd9b0 is described below

commit ba406fd9b0c4383e485b391474992981c1da9eee
Author: Dariqq <[email protected]>
AuthorDate: Mon Jun 29 07:44:51 2026 +0000

    build: Set default-port-encoding and conversion-strategy for converting 
xrefs.
    
    * build-aux/convert-xref.scm: Set encoding to UTF-8 and error on conversion 
failure.
    
    Change-Id: I871396329d7d36225f64af150dccebab13277bfb
    Signed-off-by: Maxim Cournoyer <[email protected]>
---
 build-aux/convert-xref.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/build-aux/convert-xref.scm b/build-aux/convert-xref.scm
index 47c8828857..d87f6bd665 100644
--- a/build-aux/convert-xref.scm
+++ b/build-aux/convert-xref.scm
@@ -23,4 +23,6 @@
 
 (match (command-line)
   ((program texi pofile)
-   (translate-cross-references texi pofile)))
+   (with-fluids ((%default-port-encoding "UTF-8")
+                 (%default-port-conversion-strategy 'error))
+       (translate-cross-references texi pofile))))

Reply via email to