gnu: cdrtools: Disable build parallelism.
* gnu/packages/cdrom.scm (cdrtools)[arguments]: Add '#:parallel-build? #f'.
This commit is contained in:
parent
9ff0408413
commit
e0611e9a84
|
@ -251,6 +251,9 @@ reconstruction capability.")
|
||||||
"CONFIG_SHELL=sh" "CCOM=gcc"
|
"CONFIG_SHELL=sh" "CCOM=gcc"
|
||||||
(string-append "INS_BASE=" (assoc-ref %outputs "out"))
|
(string-append "INS_BASE=" (assoc-ref %outputs "out"))
|
||||||
(string-append "INS_RBASE=" (assoc-ref %outputs "out")))
|
(string-append "INS_RBASE=" (assoc-ref %outputs "out")))
|
||||||
|
;; Parallel builds appear to be unsafe, see
|
||||||
|
;; https://hydra.gnu.org/build/3346840/log/raw
|
||||||
|
#:parallel-build? #f
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
|
|
Loading…
Reference in New Issue