mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
tests: Fix compilation of 'gnu-make-for-tests'.
* guix/tests.scm (gnu-make-for-tests)[arguments]: Pass "--disable-dependency-tracking" to #:configure-flags.
This commit is contained in:
parent
9d0c2c6e52
commit
b03753d8cc
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; 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.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -415,6 +415,9 @@ default values, and with EXTRA-FIELDS set as specified."
|
||||||
#:implicit-inputs? #f
|
#:implicit-inputs? #f
|
||||||
#:tests? #f ;cannot run "make check"
|
#:tests? #f ;cannot run "make check"
|
||||||
,@(substitute-keyword-arguments (package-arguments gnu-make)
|
,@(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)
|
((#:phases phases)
|
||||||
`(modify-phases ,phases
|
`(modify-phases ,phases
|
||||||
(replace 'build
|
(replace 'build
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue