net-snmp: disable install parallelism
Without the change install phase fails as: installing install flags: -j16 ... ... ./.libs/libnetsnmpagent.so: file not recognized: file format not recognized collect2: error: ld returned 1 exit status make[1]: *** [Makefile:1012: libnetsnmpmibs.la] Error 1 make[1]: *** Waiting for unfinished jobs....
This commit is contained in:
parent
69cf5181c3
commit
8a99bbab44
1 changed files with 3 additions and 0 deletions
|
@ -49,6 +49,9 @@ in stdenv.mkDerivation rec {
|
|||
++ lib.optional withPerlTools perlWithPkgs;
|
||||
|
||||
enableParallelBuilding = true;
|
||||
# Missing dependencies during relinking:
|
||||
# ./.libs/libnetsnmpagent.so: file not recognized: file format not recognized
|
||||
enableParallelInstalling = false;
|
||||
doCheck = false; # tries to use networking
|
||||
|
||||
postInstall = ''
|
||||
|
|
Loading…
Reference in a new issue