diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-05-09T15·30+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-05-09T15·30+0200 |
commit | 7a03cbf09dc5ecf16a1036fc83ace0e0ccec5626 (patch) | |
tree | 1a0f01030f8c20f9c68ea5113e6e59c3d7955337 /scripts/build-remote.pl.in | |
parent | 69b8f9980f39c14a59365a188b300a34d625a2cd (diff) |
build-remote.pl: Create one process fewer on the remote side
Diffstat (limited to 'scripts/build-remote.pl.in')
-rwxr-xr-x | scripts/build-remote.pl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-remote.pl.in b/scripts/build-remote.pl.in index bdb6f24669aa..e7e7538793af 100755 --- a/scripts/build-remote.pl.in +++ b/scripts/build-remote.pl.in @@ -269,7 +269,7 @@ my $buildFlags = # in which case every child receives SIGHUP; however, `-tt' doesn't # work on some platforms when connection sharing is used.) pipe STDIN, DUMMY; # make sure we have a readable STDIN -if (system("exec ssh $hostName @sshOpts '(read; kill -INT -\$\$) <&0 & nix-store -r $drvPath $buildFlags > /dev/null' 2>&4") != 0) { +if (system("exec ssh $hostName @sshOpts '(read; kill -INT -\$\$) <&0 & exec nix-store -r $drvPath $buildFlags > /dev/null' 2>&4") != 0) { # Note that if we get exit code 100 from `nix-store -r', it # denotes a permanent build failure (as opposed to an SSH problem # or a temporary Nix problem). We propagate this to the caller to |