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:
Marius Bakke 2019-06-16 09:39:00 +02:00
parent 871dbd6c6e
commit b1593c1c4f
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -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)))