Skip to content

Commit

Permalink
m17n_lib: explicitly disable parallel building
Browse files Browse the repository at this point in the history
Parallel build fails due to incomplete dependencies between libraries
within package. Let's fix it upstream first and meanwhile disable
parallel builds.
  • Loading branch information
trofi committed Oct 24, 2021
1 parent 93de7f2 commit 1a7300c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkgs/tools/inputmethods/m17n-lib/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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)";
Expand Down

0 comments on commit 1a7300c

Please sign in to comment.