diff options
author | Ian Eure <ian@retrospec.tv> | 2025-04-19 17:02:32 -0700 |
---|---|---|
committer | Ian Eure <ian@retrospec.tv> | 2025-04-20 19:52:56 -0700 |
commit | 96a884facf451712b2ea165cd0b9cfc35f791269 (patch) | |
tree | 8fbbd522570e450dabe6edba67a396cb4a3c50e1 | |
parent | ab24e2ebe51720f332215b110c1bb151718d16bd (diff) | |
download | guix-96a884facf451712b2ea165cd0b9cfc35f791269.tar.gz guix-96a884facf451712b2ea165cd0b9cfc35f791269.zip |
gnu: librewolf: Clean up parallel build code.
* gnu/packages/librewolf.scm (librewolf): Clean up parallel build code.
Change-Id: I98c7669c21c13890a2deb520cd44b74669664b4b
-rw-r--r-- | gnu/packages/librewolf.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/librewolf.scm b/gnu/packages/librewolf.scm index 7cb47ba0ad..493d5419e2 100644 --- a/gnu/packages/librewolf.scm +++ b/gnu/packages/librewolf.scm @@ -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 & |