guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/13: gnu: webkitgtk: Always use at least 2 make jobs.


From: guix-commits
Subject: 04/13: gnu: webkitgtk: Always use at least 2 make jobs.
Date: Tue, 27 Apr 2021 06:27:12 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit e5c65fb7372e10a2d6531d25f3b7d7c31679a21e
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Mon Apr 26 18:39:58 2021 +0200

    gnu: webkitgtk: Always use at least 2 make jobs.
    
    Fixes <http://issues.guix.gnu.org/47964>.
    
    * gnu/packages/webkit.scm (webkitgtk)[arguments]: Use at least -j2.
---
 gnu/packages/webkit.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/webkit.scm b/gnu/packages/webkit.scm
index 083c8cc..74ffe92 100644
--- a/gnu/packages/webkit.scm
+++ b/gnu/packages/webkit.scm
@@ -260,6 +260,9 @@ acceleration in mind, leveraging common 3D graphics APIs 
for best performance.")
                           ;; now, we explicitly disable it to prevent an error
                           ;; at configuration time.
                           "-DUSE_GSTREAMER_GL=OFF")
+       #:make-flags
+       ;; Never build with unsupported -j1: https://issues.guix.gnu.org/47964#5
+       (list "-j" (number->string (max 2 (parallel-job-count))))
        #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'configure-bubblewrap-store-directory



reply via email to

[Prev in Thread] Current Thread [Next in Thread]