* Make --cores work when building through the Nix daemon.

This commit is contained in:
Eelco Dolstra 2010-08-12 09:21:50 +00:00
parent 750be19ae8
commit 6846ed8b44
3 changed files with 7 additions and 1 deletions

View file

@ -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;