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:
@@ -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 = ''
|
||||
|
||||
Reference in New Issue
Block a user