mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
rockbox_utility: disable parallel building
qmake does not support translations in resources.
This commit is contained in:
parent
57d27fb420
commit
5d23b54a20
@ -39,6 +39,12 @@ stdenv.mkDerivation rec {
|
||||
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; {
|
||||
description = "Open source firmware for mp3 players";
|
||||
homepage = http://www.rockbox.org;
|
||||
|
Loading…
Reference in New Issue
Block a user