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:
Ludovic Courtès 2019-02-10 12:10:17 +01:00
parent 2356b7ab6d
commit b717d0f90e
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -2173,6 +2173,11 @@ (define-public qtwebkit
(arguments (arguments
`(#:tests? #f ; no apparent tests; it might be necessary to set `(#:tests? #f ; no apparent tests; it might be necessary to set
; ENABLE_API_TESTS, see CMakeLists.txt ; 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" #:configure-flags (list ;"-DENABLE_API_TESTS=TRUE"
"-DPORT=Qt" "-DPORT=Qt"
"-DUSE_LIBHYPHEN=OFF" "-DUSE_LIBHYPHEN=OFF"