aboutsummaryrefslogtreecommitdiff
path: root/src/nix-worker
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2010-08-12 09:21:50 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2010-08-12 09:21:50 +0000
commit6846ed8b442c20430b816a6b2ec926c841e38e0d (patch)
tree89c115b80c306031610c04bb686025e4b046edcb /src/nix-worker
parent750be19ae865da3ee03c132a287148f2402ad72b (diff)
* Make --cores work when building through the Nix daemon.
Diffstat (limited to 'src/nix-worker')
-rw-r--r--src/nix-worker/nix-worker.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nix-worker/nix-worker.cc b/src/nix-worker/nix-worker.cc
index 0052fbb7d..13cecf654 100644
--- a/src/nix-worker/nix-worker.cc
+++ b/src/nix-worker/nix-worker.cc
@@ -500,6 +500,9 @@ static void performOp(unsigned int clientVersion,
logType = (LogType) readInt(from);
printBuildTrace = readInt(from) != 0;
}
+ if (GET_PROTOCOL_MINOR(clientVersion) >= 6) {
+ buildCores = readInt(from);
+ }
startWork();
stopWork();
break;