mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
m17n_lib: explicitly disable parallel building
Parallel build fails due to incomplete dependencies between libraries within package. Let's fix it upstream first and meanwhile disable parallel builds.
This commit is contained in:
parent
93de7f2421
commit
1a7300c3fb
@ -10,6 +10,11 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ m17n_db ];
|
||||
|
||||
# Fails parallel build due to missing intra-package depends:
|
||||
# https://savannah.nongnu.org/bugs/index.php?61377
|
||||
# make[2]: *** No rule to make target '../src/libm17n-core.la', needed by 'libm17n.la'. Stop.
|
||||
enableParallelBuilding = false;
|
||||
|
||||
meta = {
|
||||
homepage = "https://www.nongnu.org/m17n/";
|
||||
description = "Multilingual text processing library (runtime)";
|
||||
|
Loading…
Reference in New Issue
Block a user