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).
This commit is contained in:
parent
e5c1f5cfdf
commit
6254823271
1 changed files with 3 additions and 12 deletions
|
@ -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.
|
||||
|
|
Reference in a new issue