summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2024-05-29 01:59:15 -0400
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2024-06-24 08:51:41 -0400
commitd37614bed19891d322a305d02be61da8aacc0492 (patch)
tree5bcada7d808de186c04a408ec750fc5f79e0e15d /guix
parent8c80b221475631f31de5d7a73e77a79a44e435f1 (diff)
downloadguix-patches-d37614bed19891d322a305d02be61da8aacc0492.tar
guix-patches-d37614bed19891d322a305d02be61da8aacc0492.tar.gz
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
Diffstat (limited to 'guix')
-rw-r--r--guix/build-system/qt.scm2
1 files changed, 1 insertions, 1 deletions
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)