self: Build translated manuals with a single process.
Works around <https://issues.guix.gnu.org/47428>. * guix/self.scm (translate-texi-manuals): Set parallel-job-count to 1.
This commit is contained in:
parent
02562e2f1e
commit
af2d6ec092
1 changed files with 4 additions and 1 deletions
|
@ -410,7 +410,10 @@ a list of extra files, such as '(\"contributing\")."
|
||||||
;; Limit thread creation by 'n-par-for-each'. Going beyond can
|
;; Limit thread creation by 'n-par-for-each'. Going beyond can
|
||||||
;; lead libgc 8.0.4 to abort with:
|
;; lead libgc 8.0.4 to abort with:
|
||||||
;; mmap(PROT_NONE) failed
|
;; mmap(PROT_NONE) failed
|
||||||
(min (parallel-job-count) 4))
|
;;
|
||||||
|
;; FIXME: The above error would still happen when using only 4
|
||||||
|
;; build jobs, so disable parallelism entirely for the time being.
|
||||||
|
(min (parallel-job-count) 1))
|
||||||
|
|
||||||
(mkdir #$output)
|
(mkdir #$output)
|
||||||
(copy-recursively #$documentation "."
|
(copy-recursively #$documentation "."
|
||||||
|
|
Reference in a new issue