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: I65db3d6c6727bd24549af4a44940e7362064aed6master
parent
8c80b22147
commit
d37614bed1
|
@ -130,7 +130,7 @@
|
||||||
(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)
|
||||||
|
|
Reference in New Issue