Skip to content

Commit

Permalink
eresi: disable parallel installs
Browse files Browse the repository at this point in the history
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
  • Loading branch information
trofi committed Mar 3, 2023
1 parent 7b8d862 commit 51b39d7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkgs/development/tools/analysis/eresi/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 51b39d7

Please sign in to comment.