ipvsadm: disable parallel build

This commit is contained in:
FliegendeWurst 2022-01-29 11:34:05 +01:00
parent 0022c16ae5
commit 79c5bf1d86

View File

@ -16,6 +16,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libnl popt ];
# Disable parallel build, errors:
# *** No rule to make target 'libipvs/libipvs.a', needed by 'ipvsadm'. Stop.
enableParallelBuilding = false;
preBuild = ''
makeFlagsArray+=(
INCLUDE=$(pkg-config --cflags libnl-genl-3.0)