guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/05: tests: Fix compilation of 'gnu-make-for-tests'.


From: guix-commits
Subject: 05/05: tests: Fix compilation of 'gnu-make-for-tests'.
Date: Tue, 17 Mar 2020 11:07:34 -0400 (EDT)

civodul pushed a commit to branch core-updates
in repository guix.

commit b03753d8ccf73777d2bbbe65441da6bb6dfa7e8f
Author: Ludovic Courtès <address@hidden>
AuthorDate: Tue Mar 17 15:49:06 2020 +0100

    tests: Fix compilation of 'gnu-make-for-tests'.
    
    * guix/tests.scm (gnu-make-for-tests)[arguments]: Pass
    "--disable-dependency-tracking" to #:configure-flags.
---
 guix/tests.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/guix/tests.scm b/guix/tests.scm
index ff31bca..95a7d7c 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 
<address@hidden>
+;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès 
<address@hidden>
 ;;;
 ;;; 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]