mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: qtwebkit: Build sequentially.
Fixes <https://bugs.gnu.org/34062>. * gnu/packages/qt.scm (qtwebkit)[arguments]: Add #:parallel-build? #f.
This commit is contained in:
parent
2356b7ab6d
commit
b717d0f90e
1 changed files with 5 additions and 0 deletions
|
@ -2173,6 +2173,11 @@ (define-public qtwebkit
|
|||
(arguments
|
||||
`(#:tests? #f ; no apparent tests; it might be necessary to set
|
||||
; ENABLE_API_TESTS, see CMakeLists.txt
|
||||
|
||||
;; Parallel builds fail due to a race condition:
|
||||
;; <https://bugs.gnu.org/34062>.
|
||||
#:parallel-build? #f
|
||||
|
||||
#:configure-flags (list ;"-DENABLE_API_TESTS=TRUE"
|
||||
"-DPORT=Qt"
|
||||
"-DUSE_LIBHYPHEN=OFF"
|
||||
|
|
Loading…
Reference in a new issue