apteryx pushed a commit to branch master
in repository guix.

commit d37614bed19891d322a305d02be61da8aacc0492
Author: Maxim Cournoyer <maxim.courno...@gmail.com>
AuthorDate: Wed May 29 01:59:15 2024 -0400

    build-system: qt: Fix default parallel-tests? value to #t.
    
    There is no reason to have this diverge from the underlying cmake build
    system.
    
    * guix/build-system/qt.scm (qt-build) <#:parallel-tests?>: Default to #t.
    
    Change-Id: I65db3d6c6727bd24549af4a44940e7362064aed6
---
 guix/build-system/qt.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/build-system/qt.scm b/guix/build-system/qt.scm
index 978aed0fc1..dc5d65436e 100644
--- a/guix/build-system/qt.scm
+++ b/guix/build-system/qt.scm
@@ -130,7 +130,7 @@
                    (build-type "RelWithDebInfo")
                    (tests? #t)
                    (test-target "test")
-                   (parallel-build? #t) (parallel-tests? #f)
+                   (parallel-build? #t) (parallel-tests? #t)
                    (validate-runpath? #t)
                    (patch-shebangs? #t)
                    (strip-binaries? #t)

Reply via email to