diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-23 12:21:08 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-23 12:27:19 +0200 |
commit | 6d700e3601a3469981995fd364d1a1ff7f158e5e (patch) | |
tree | c566f2ef764d48b369f18b0ac42ca723f1de57d9 /libbuild2/install/operation.cxx | |
parent | 33e665c41928824a0410f0328a1fe9873381faaf (diff) |
Un-tune scheduler when building build system modules
Diffstat (limited to 'libbuild2/install/operation.cxx')
-rw-r--r-- | libbuild2/install/operation.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/install/operation.cxx b/libbuild2/install/operation.cxx index a2ad7d0..4515f14 100644 --- a/libbuild2/install/operation.cxx +++ b/libbuild2/install/operation.cxx @@ -39,7 +39,7 @@ namespace build2 "installed", "has nothing to install", // We cannot "be installed". execution_mode::first, - 0, + 0 /* concurrency */, // Run serially. &install_pre, nullptr }; @@ -62,7 +62,7 @@ namespace build2 "uninstalled", "is not installed", execution_mode::last, - 0, + 0 /* concurrency */, // Run serially &install_pre, nullptr }; |