summaryrefslogtreecommitdiff
path: root/doc/build.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2021-07-18 16:05:21 +0200
committerLudovic Courtès <ludo@gnu.org>2021-07-18 19:50:01 +0200
commit0e47fcced442d8e7c1b05184fdc1c14f10ed04ec (patch)
tree4ae844bc0ec3c670f8697bdc24362c122fa718ad /doc/build.scm
parente4b70bc55a538569465bcedee19d1f2607308e65 (diff)
parent8b1bde7bb3936a64244824500ffe60f123704437 (diff)
Merge branch 'master' into core-updates
Diffstat (limited to 'doc/build.scm')
-rw-r--r--doc/build.scm11
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/build.scm b/doc/build.scm
index 564b0e1591..90fbf1f0e2 100644
--- a/doc/build.scm
+++ b/doc/build.scm
@@ -51,7 +51,16 @@
(@@ (guix self) file-append*))
(define translated-texi-manuals
- (@@ (guix self) translate-texi-manuals))
+ (let ((translated (@@ (guix self) translate-texi-manuals)))
+ (lambda (source)
+ (let ((result (translated source)))
+ ;; Build with 'guile-3.0-latest', which is linked against
+ ;; 'libgc/disable-munmap', to avoid the dreaded "mmap(PROT_NONE)
+ ;; failed" crash: <https://bugs.gnu.org/47428>.
+ (computed-file (computed-file-name result)
+ (computed-file-gexp result)
+ #:options (computed-file-options result)
+ #:guile guile-3.0-latest)))))
(define info-manual
(@@ (guix self) info-manual))