eresi: disable parallel installs
Without the change parallel installs fail as: install flags: -j2 ... ln: failed to create symbolic link '...-eresi-0.83-a3-phoenix//bin/elfsh': No such file or directory make: *** [Makefile:108: install64] Error 1
This commit is contained in:
parent
7b8d86277d
commit
51b39d7b8b
@ -60,6 +60,9 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [ which ];
|
||||
buildInputs = [ openssl readline ];
|
||||
enableParallelBuilding = true;
|
||||
# ln: failed to create symbolic link '...-eresi-0.83-a3-phoenix//bin/elfsh': No such file or directory
|
||||
# make: *** [Makefile:108: install64] Error 1
|
||||
enableParallelInstalling = false;
|
||||
|
||||
installTargets = lib.singleton "install"
|
||||
++ lib.optional stdenv.is64bit "install64";
|
||||
|
Loading…
Reference in New Issue
Block a user