diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-03-17 15:49:06 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-03-17 15:49:06 +0100 |
commit | b03753d8ccf73777d2bbbe65441da6bb6dfa7e8f (patch) | |
tree | a9ee193506f7fc930acd154c8ab60d9adc3d014e | |
parent | 9d0c2c6e5226bbd11e710bd4efa8f25e9ffb5a86 (diff) | |
download | guix-b03753d8ccf73777d2bbbe65441da6bb6dfa7e8f.tar.gz |
tests: Fix compilation of 'gnu-make-for-tests'.
* guix/tests.scm (gnu-make-for-tests)[arguments]: Pass "--disable-dependency-tracking" to #:configure-flags.
-rw-r--r-- | guix/tests.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/guix/tests.scm b/guix/tests.scm index ff31bcad44..95a7d7c4b8 100644 --- a/guix/tests.scm +++ b/guix/tests.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -415,6 +415,9 @@ default values, and with EXTRA-FIELDS set as specified." #:implicit-inputs? #f #:tests? #f ;cannot run "make check" ,@(substitute-keyword-arguments (package-arguments gnu-make) + ((#:configure-flags flags ''()) + ;; As in 'gnu-make-boot0', work around a 'config.status' defect. + `(cons "--disable-dependency-tracking" ,flags)) ((#:phases phases) `(modify-phases ,phases (replace 'build |