1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-18 00:12:43 +01:00

* 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

@ -198,6 +198,9 @@ void RemoteStore::setOptions()
writeInt(logType, to);
writeInt(printBuildTrace, to);
}
if (GET_PROTOCOL_MINOR(daemonVersion) >= 6) {
writeInt(buildCores, to);
}
processStderr();
}