diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-02-10 10:16:39 +0100 |
|---|---|---|
| committer | Ian Eure <ian@retrospec.tv> | 2025-02-14 16:03:11 -0800 |
| commit | 9b1fe3bd70a57cdbf99339eb06b3a9b57f060f97 (patch) | |
| tree | c8f5c99223957fcafa620b9cd73c74241a123718 /gnu | |
| parent | a38d71b2e55711f547d468b0df641fc4488074d0 (diff) | |
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>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/librewolf.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/librewolf.scm b/gnu/packages/librewolf.scm index e5e91fb91e8..bbbfa901ba8 100644 --- a/gnu/packages/librewolf.scm +++ b/gnu/packages/librewolf.scm | |||
| @@ -471,8 +471,10 @@ | |||
| 471 | (apply invoke "./mach" "build" | 471 | (apply invoke "./mach" "build" |
| 472 | ;; mach will use parallel build if possible by default | 472 | ;; mach will use parallel build if possible by default |
| 473 | `(,@(if parallel-build? | 473 | `(,@(if parallel-build? |
| 474 | '() | 474 | `(,(string-append |
| 475 | '("-j1")) ,@make-flags)))) | 475 | "-j" (number->string (parallel-job-count)))) |
| 476 | '("-j1")) | ||
| 477 | ,@make-flags)))) | ||
| 476 | (add-after 'build 'neutralise-store-references | 478 | (add-after 'build 'neutralise-store-references |
| 477 | (lambda _ | 479 | (lambda _ |
| 478 | ;; Mangle the store references to compilers & | 480 | ;; Mangle the store references to compilers & |
