mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: librewolf: Honor --cores build argument.
* gnu/packages/librewolf.scm (librewolf)[arguments]<#:phases>: Honor --cores build argument during the 'build phase. Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
parent
a38d71b2e5
commit
9b1fe3bd70
1 changed files with 4 additions and 2 deletions
|
@ -471,8 +471,10 @@
|
||||||
(apply invoke "./mach" "build"
|
(apply invoke "./mach" "build"
|
||||||
;; mach will use parallel build if possible by default
|
;; mach will use parallel build if possible by default
|
||||||
`(,@(if parallel-build?
|
`(,@(if parallel-build?
|
||||||
'()
|
`(,(string-append
|
||||||
'("-j1")) ,@make-flags))))
|
"-j" (number->string (parallel-job-count))))
|
||||||
|
'("-j1"))
|
||||||
|
,@make-flags))))
|
||||||
(add-after 'build 'neutralise-store-references
|
(add-after 'build 'neutralise-store-references
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Mangle the store references to compilers &
|
;; Mangle the store references to compilers &
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue