diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-04-13 20:00:29 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-04-13 20:00:29 +0200 |
commit | 9d89818a359dd0657e4eb7649b29ad4197b8db39 (patch) | |
tree | c0633d7c9614a7825ba08628ae933c87371e262b /gnu/packages | |
parent | 13d25c546010ded6a275f167497386e6e253b54e (diff) | |
download | guix-9d89818a359dd0657e4eb7649b29ad4197b8db39.tar.gz |
gnu: autogen: Disable parallel tests.
* gnu/packages/autogen.scm (autogen)[arguments]: Add #:parallel-tests?.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/autogen.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/autogen.scm b/gnu/packages/autogen.scm index 034db2ee96..968337ad8d 100644 --- a/gnu/packages/autogen.scm +++ b/gnu/packages/autogen.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2013, 2014 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -51,6 +52,10 @@ ;; “Something went wrong bootstrapping makefile fragments for ;; automatic dependency tracking. Try re-running configure with […]” (list "--disable-dependency-tracking") + + ;; XXX: Parallel tests may cause an indefinite hang with GNU Make 4.3. + #:parallel-tests? #f + #:phases (modify-phases %standard-phases (add-before 'patch-source-shebangs 'patch-test-scripts |