bootstrap: guile-static: Disable parallel build.

* gnu/packages/make-bootstrap.scm (%guile-static)[arguments]:
Override #:parallel-build? to be #f.
This commit is contained in:
Mark H Weaver 2019-08-12 00:59:51 -04:00
parent fe507d7a3d
commit 9e6256ba0f
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 4 additions and 0 deletions

View File

@ -753,6 +753,10 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
((#:tests? _ #f)
;; There are uses of `dynamic-link' in
;; {foreign,coverage}.test that don't fly here.
#f)
((#:parallel-build? _ #f)
;; Work around the fact that the Guile build system is
;; not deterministic when parallel-build is enabled.
#f))))))
(package-with-relocatable-glibc (static-package guile))))