Skip to content

Commit

Permalink
snabb: disable parallel building
Browse files Browse the repository at this point in the history
  • Loading branch information
orivej committed Nov 28, 2017
1 parent ecfcd0b commit 0ed7328
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/tools/networking/snabb/default.nix
Expand Up @@ -31,7 +31,9 @@ stdenv.mkDerivation rec {
cp src/snabb $out/bin
'';

enableParallelBuilding = true;
# Dependencies are underspecified: "make -C src obj/arch/sse2_c.o" fails with
# "Fatal error: can't create obj/arch/sse2_c.o: No such file or directory".
enableParallelBuilding = false;

meta = with stdenv.lib; {
homepage = https://github.com/SnabbCo/snabbswitch;
Expand All @@ -49,4 +51,3 @@ stdenv.mkDerivation rec {
maintainers = [ maintainers.lukego maintainers.domenkozar ];
};
}

0 comments on commit 0ed7328

Please sign in to comment.