rockbox_utility: disable parallel building

qmake does not support translations in resources.
This commit is contained in:
Orivej Desh 2017-12-05 09:00:48 +00:00
parent 57d27fb420
commit 5d23b54a20

View File

@ -39,6 +39,12 @@ stdenv.mkDerivation rec {
runHook postInstall runHook postInstall
''; '';
# `make build/rcc/qrc_rbutilqt-lang.cpp` fails with
# RCC: Error in 'rbutilqt-lang.qrc': Cannot find file 'lang/rbutil_cs.qm'
# Do not add `lrelease rbutilqt.pro` into preConfigure, otherwise `make lrelease`
# may clobber the files read by the parallel `make build/rcc/qrc_rbutilqt-lang.cpp`.
enableParallelBuilding = false;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Open source firmware for mp3 players"; description = "Open source firmware for mp3 players";
homepage = http://www.rockbox.org; homepage = http://www.rockbox.org;