guix-commits
[Top][All Lists]
Advanced

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

03/04: gnu: bison-boot0: Remove conditional parallel build/test flags.


From: guix-commits
Subject: 03/04: gnu: bison-boot0: Remove conditional parallel build/test flags.
Date: Mon, 14 Oct 2019 09:46:43 -0400 (EDT)

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

commit 62548232711b2f34fa6a03caee2b3cf082c99ada
Author: Ludovic Courtès <address@hidden>
Date:   Mon Oct 14 15:40:35 2019 +0200

    gnu: bison-boot0: Remove conditional parallel build/test flags.
    
    * gnu/packages/commencement.scm (bison-boot0)[arguments]: Remove
    conditional #:parallel-build? and #:parallel-tests? flags.
    Append (package-arguments bison).
---
 gnu/packages/commencement.scm | 15 +++------------
 1 file changed, 3 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 1e30027..26b0a94 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1730,17 +1730,6 @@ exec " gcc "/bin/" program
        #:implicit-inputs? #f
        #:guile ,%bootstrap-guile
 
-       ;; XXX: These flags should be unconditional, but for now
-       ;; we just add them on x86 to avoid a full rebuild.
-       ;; TODO: On the next core-updates, use
-       ;; 'substitute-keyword-arguments' to inherit them from
-       ;; BISON.
-       ,@(if (member (%current-system)
-                     '("x86_64-linux" "i686-linux"))
-             '(#:parallel-build? #f
-               #:parallel-tests? #f)
-             '())
-
        ;; Zero timestamps in liby.a; this must be done
        ;; explicitly here because the bootstrap Binutils don't
        ;; do that (default is "cru".)
@@ -1751,7 +1740,9 @@ exec " gcc "/bin/" program
                            "RANLIB=ranlib")
                           (_
                            "RANLIB=ranlib -D"))
-                      "V=1")))))
+                      "V=1")
+
+       ,@(package-arguments bison)))))
 
 (define flex-boot0
   ;; This Flex is needed to build MiG as well as Linux-Libre headers.



reply via email to

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