mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: bison: Disable parallel build.
Fixes <https://bugs.gnu.org/36238. Reported by Carl Dong <contact@carldong.me>. * gnu/packages/bison.scm (bison)[arguments]: New field.
This commit is contained in:
parent
871dbd6c6e
commit
b1593c1c4f
1 changed files with 5 additions and 0 deletions
|
@ -41,6 +41,11 @@ (define-public bison
|
|||
(base32
|
||||
"03c2pmq3bs0drdislnz6gm1rwz3n4pb2rz9navyxydppxg2rl597"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(;; Building in parallel on many-core systems may cause an error such as
|
||||
;; "mv: cannot stat 'examples/c/reccalc/scan.stamp.tmp': No such file or
|
||||
;; directory". See <https://bugs.gnu.org/36238>.
|
||||
#:parallel-build? #f))
|
||||
(native-inputs `(("perl" ,perl)
|
||||
;; m4 is not present in PATH when cross-building.
|
||||
("m4" ,m4)))
|
||||
|
|
Loading…
Reference in a new issue