gnu: camlp4: Compile native version.
* gnu/packages/ocaml.scm (camlp4)[arguments]: Disable parallel-build. Change default target to "all" to compile native and byte version. Signed-off-by: David Craven <david@craven.ch>
This commit is contained in:
parent
2b1f7b83f7
commit
e0ddaa8be3
|
@ -238,6 +238,10 @@ Git-friendly development workflow.")
|
||||||
(inputs `(("ocaml" ,ocaml)))
|
(inputs `(("ocaml" ,ocaml)))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ;no documented test target
|
'(#:tests? #f ;no documented test target
|
||||||
|
;; a race-condition will lead byte and native targets to mkdir _build
|
||||||
|
;; which fails on the second attempt.
|
||||||
|
#:parallel-build? #f
|
||||||
|
#:make-flags '("all")
|
||||||
#:phases (modify-phases %standard-phases
|
#:phases (modify-phases %standard-phases
|
||||||
(replace
|
(replace
|
||||||
'configure
|
'configure
|
||||||
|
|
Loading…
Reference in New Issue