guix_mirror_bot pushed a commit to branch add-compress-debug-symbols-phase in repository guix.
commit 5aa8e5e84f07f3d3801aefa7b0af69124842ae6c Author: Maxim Cournoyer <[email protected]> AuthorDate: Tue Nov 18 23:30:02 2025 +0900 system/install: Adjust for the new Info Zstd extension. * gnu/system/install.scm (log-to-info): Adjust to use the .zst file extension. Change-Id: I2dfc0cc762da04ede7b9c6096edcd6b80989dc85 --- gnu/system/install.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/system/install.scm b/gnu/system/install.scm index 5041dadf15..a208f102ee 100644 --- a/gnu/system/install.scm +++ b/gnu/system/install.scm @@ -123,12 +123,12 @@ manual." (infodir "/run/current-system/profile/share/info") (per-lang (lambda (code) (string-append infodir "/guix." code - ".info.gz"))) + ".info.zst"))) (file ((@ (srfi srfi-1) find) file-exists? (list (per-lang with-region) (per-lang language) (string-append infodir - "/guix.info.gz")))) + "/guix.info.zst")))) (node (or (assoc-ref '#$%installation-node-names with-region) (assoc-ref '#$%installation-node-names
