diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-05-29 01:59:15 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-06-24 08:51:41 -0400 |
commit | d37614bed19891d322a305d02be61da8aacc0492 (patch) | |
tree | 5bcada7d808de186c04a408ec750fc5f79e0e15d | |
parent | 8c80b221475631f31de5d7a73e77a79a44e435f1 (diff) | |
download | guix-d37614bed19891d322a305d02be61da8aacc0492.tar.gz guix-d37614bed19891d322a305d02be61da8aacc0492.zip |
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
-rw-r--r-- | guix/build-system/qt.scm | 2 |
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) |