aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-04-28 16:20:46 +0200
committerEelco Dolstra <edolstra@gmail.com>2017-04-28 16:21:54 +0200
commita1a5e63e1456b5905b73065f635a324f3c309a5d (patch)
treeaf3f79868a78e06a36748896f166251474df033f /src
parent41c4558afe04d1cad0d0ef3b18a1a8155b40b06e (diff)
Fix brainfart
Diffstat (limited to 'src')
-rw-r--r--src/libstore/build.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc
index 9bf1ab5aa..01a3203dd 100644
--- a/src/libstore/build.cc
+++ b/src/libstore/build.cc
@@ -3379,7 +3379,7 @@ void SubstitutionGoal::tryToRun()
if maxBuildJobs == 0 (no local builds allowed), we still allow
a substituter to run. This is because substitutions cannot be
distributed to another machine via the build hook. */
- if (worker.getNrLocalBuilds() >= std::min(1U, (unsigned int) settings.maxBuildJobs)) {
+ if (worker.getNrLocalBuilds() >= std::max(1U, (unsigned int) settings.maxBuildJobs)) {
worker.waitForBuildSlot(shared_from_this());
return;
}