summaryrefslogtreecommitdiff
path: root/distro/packages/base.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-10-28 01:59:33 +0200
committerLudovic Courtès <ludo@gnu.org>2012-10-28 01:59:33 +0200
commitd6ed71cbf4cdf01f69189459e782fabdf0f92525 (patch)
treeac6f618e88420a8cb9bf3a6d33fb4571094b80df /distro/packages/base.scm
parent8f3ecbd7157aa4bf63069d69280351bd04c85eb0 (diff)
downloadguix-patches-d6ed71cbf4cdf01f69189459e782fabdf0f92525.tar
guix-patches-d6ed71cbf4cdf01f69189459e782fabdf0f92525.tar.gz
distro: Build Bash sequentially.
* distro/packages/base.scm (bash): Set `#:parallel-build?' and `#:parallel-tests?' to #f.
Diffstat (limited to 'distro/packages/base.scm')
-rw-r--r--distro/packages/base.scm6
1 files changed, 6 insertions, 0 deletions
diff --git a/distro/packages/base.scm b/distro/packages/base.scm
index dcb1ca20c8..e21d4d5667 100644
--- a/distro/packages/base.scm
+++ b/distro/packages/base.scm
@@ -958,6 +958,12 @@ without Readline in applications which desire its capabilities.")
(assoc-ref %build-inputs "ncurses")
"/lib"))
+ ;; Bash is reportedly not parallel-safe. See, for instance,
+ ;; <http://patches.openembedded.org/patch/32745/> and
+ ;; <http://git.buildroot.net/buildroot/commit/?h=79e2d802ae7e376a413c02097790493e1f65c3a4>.
+ #:parallel-build? #f
+ #:parallel-tests? #f
+
;; XXX: The tests have a lot of hard-coded paths, so disable them
;; for now.
#:tests? #f