mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02: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:
@@ -466,11 +466,11 @@
|
||||
(parallel-build? #t) #:allow-other-keys)
|
||||
(apply invoke "./mach" "build"
|
||||
;; mach will use parallel build if possible by default
|
||||
`(,@(if parallel-build?
|
||||
`(,(string-append
|
||||
"-j" (number->string (parallel-job-count))))
|
||||
'("-j1"))
|
||||
,@make-flags))))
|
||||
(string-append
|
||||
"-j" (if parallel-build?
|
||||
(number->string (parallel-job-count))
|
||||
"1"))
|
||||
make-flags)))
|
||||
(add-after 'build 'neutralise-store-references
|
||||
(lambda _
|
||||
;; Mangle the store references to compilers &
|
||||
|
||||
Reference in New Issue
Block a user