mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: librewolf: Clean up parallel build code.
* gnu/packages/librewolf.scm (librewolf): Clean up parallel build code. Change-Id: I98c7669c21c13890a2deb520cd44b74669664b4b
This commit is contained in:
parent
ab24e2ebe5
commit
96a884facf
1 changed files with 5 additions and 5 deletions
|
@ -466,11 +466,11 @@
|
||||||
(parallel-build? #t) #:allow-other-keys)
|
(parallel-build? #t) #:allow-other-keys)
|
||||||
(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?
|
(string-append
|
||||||
`(,(string-append
|
"-j" (if parallel-build?
|
||||||
"-j" (number->string (parallel-job-count))))
|
(number->string (parallel-job-count))
|
||||||
'("-j1"))
|
"1"))
|
||||||
,@make-flags))))
|
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