mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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
This commit is contained in:
parent
8c80b22147
commit
d37614bed1
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ (define* (qt-build name inputs
|
||||||
(build-type "RelWithDebInfo")
|
(build-type "RelWithDebInfo")
|
||||||
(tests? #t)
|
(tests? #t)
|
||||||
(test-target "test")
|
(test-target "test")
|
||||||
(parallel-build? #t) (parallel-tests? #f)
|
(parallel-build? #t) (parallel-tests? #t)
|
||||||
(validate-runpath? #t)
|
(validate-runpath? #t)
|
||||||
(patch-shebangs? #t)
|
(patch-shebangs? #t)
|
||||||
(strip-binaries? #t)
|
(strip-binaries? #t)
|
||||||
|
|
Loading…
Reference in a new issue