From d6ed71cbf4cdf01f69189459e782fabdf0f92525 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sun, 28 Oct 2012 01:59:33 +0200 Subject: [PATCH] distro: Build Bash sequentially. * distro/packages/base.scm (bash): Set `#:parallel-build?' and `#:parallel-tests?' to #f. --- distro/packages/base.scm | 6 ++++++ 1 file changed, 6 insertions(+) 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, + ;; and + ;; . + #:parallel-build? #f + #:parallel-tests? #f + ;; XXX: The tests have a lot of hard-coded paths, so disable them ;; for now. #:tests? #f