about summary refs log tree commit diff
path: root/src/libstore/remote-store.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2010-08-12T09·21+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2010-08-12T09·21+0000
commit6846ed8b442c20430b816a6b2ec926c841e38e0d (patch)
tree89c115b80c306031610c04bb686025e4b046edcb /src/libstore/remote-store.cc
parent750be19ae865da3ee03c132a287148f2402ad72b (diff)
* Make --cores work when building through the Nix daemon.
Diffstat (limited to 'src/libstore/remote-store.cc')
-rw-r--r--src/libstore/remote-store.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc
index 9db90c872a..3d8b2a0c42 100644
--- a/src/libstore/remote-store.cc
+++ b/src/libstore/remote-store.cc
@@ -198,6 +198,9 @@ void RemoteStore::setOptions()
         writeInt(logType, to);
         writeInt(printBuildTrace, to);
     }
+    if (GET_PROTOCOL_MINOR(daemonVersion) >= 6) {
+        writeInt(buildCores, to);
+    }
     processStderr();
 }