mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: boost: Add -j for build.
* gnu/packages/boost.scm (boost)[arguments]: Add -j flag for build phase.
This commit is contained in:
parent
6941965526
commit
1a0ae573c7
1 changed files with 3 additions and 1 deletions
|
@ -90,7 +90,9 @@ (define-public boost
|
||||||
(replace
|
(replace
|
||||||
'build
|
'build
|
||||||
(lambda* (#:key outputs make-flags #:allow-other-keys)
|
(lambda* (#:key outputs make-flags #:allow-other-keys)
|
||||||
(zero? (apply system* "./b2" make-flags))))
|
(zero? (apply system* "./b2"
|
||||||
|
(format #f "-j~a" (parallel-job-count))
|
||||||
|
make-flags))))
|
||||||
(replace
|
(replace
|
||||||
'install
|
'install
|
||||||
(lambda* (#:key outputs make-flags #:allow-other-keys)
|
(lambda* (#:key outputs make-flags #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in a new issue