Skip to content

Commit

Permalink
s9fes: disable install parallelism
Browse files Browse the repository at this point in the history
Without the change parallel installs fail as:

    install flags: -j16
    install -d -m 0755 ...-s9fes-20181205/share/s9fes
    sed -e "s|^#! /usr/local|#! ...-s9fes-20181205|" <prog/s9help.scm >...-s9fes-20181205/bin/s9help
    ...-bash-5.2-p15/bin/bash: line 1: ...-s9fes-20181205/bin/s9help: No such file or directory
    make: *** [Makefile:157: install-util] Error 1
    make: *** Waiting for unfinished jobs....
  • Loading branch information
trofi committed Mar 4, 2023
1 parent 51b39d7 commit b3d8d75
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkgs/development/interpreters/s9fes/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ stdenv.mkDerivation rec {
buildInputs = [ ncurses ];
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" "PREFIX=$(out)" ];
enableParallelBuilding = true;
# ...-bash-5.2-p15/bin/bash: line 1: ...-s9fes-20181205/bin/s9help: No such file or directory
# make: *** [Makefile:157: install-util] Error 1
enableParallelInstalling = false;

meta = with lib; {
description = "Scheme 9 From Empty Space, an interpreter for R4RS Scheme";
Expand Down

0 comments on commit b3d8d75

Please sign in to comment.