gnu: lablgtk: Build sequentially.
* gnu/packages/ocaml.scm (lablgtk)[arguments]: Add #:parallel-build? #f.
This commit is contained in:
parent
eed588d997
commit
ef89cb4263
|
@ -460,6 +460,11 @@ provers.")
|
||||||
("librsvg" ,librsvg)))
|
("librsvg" ,librsvg)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no check target
|
`(#:tests? #f ; no check target
|
||||||
|
|
||||||
|
;; Occasionally we would get "Error: Unbound module GtkThread" when
|
||||||
|
;; compiling 'gtkThInit.ml', with 'make -j'. So build sequentially.
|
||||||
|
#:parallel-build? #f
|
||||||
|
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'install
|
(replace 'install
|
||||||
|
|
Loading…
Reference in New Issue