From 96a884facf451712b2ea165cd0b9cfc35f791269 Mon Sep 17 00:00:00 2001 From: Ian Eure Date: Sat, 19 Apr 2025 17:02:32 -0700 Subject: [PATCH] gnu: librewolf: Clean up parallel build code. * gnu/packages/librewolf.scm (librewolf): Clean up parallel build code. Change-Id: I98c7669c21c13890a2deb520cd44b74669664b4b --- gnu/packages/librewolf.scm | 10 +++++----- 1 file 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 &