summaryrefslogtreecommitdiff
path: root/src/mongo/db/SConscript
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2019-02-14 16:15:50 -0500
committerGregory Wlodarek <gregory.wlodarek@mongodb.com>2019-02-22 21:12:50 -0500
commit0f2da7fb758f12bd64c6c7891d455a53e1ab1d89 (patch)
treed21c7a099c802971bea6059041da5b3b15365079 /src/mongo/db/SConscript
parent4253bddd476f19fb6af295323acc9d5af15da598 (diff)
downloadmongo-0f2da7fb758f12bd64c6c7891d455a53e1ab1d89.tar.gz
SERVER-37954 Thread commitQuorum through the createIndexes command into the Coordinator
Diffstat (limited to 'src/mongo/db/SConscript')
-rw-r--r--src/mongo/db/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/SConscript b/src/mongo/db/SConscript
index f7377ba6e14..fa3b8ac8358 100644
--- a/src/mongo/db/SConscript
+++ b/src/mongo/db/SConscript
@@ -943,7 +943,6 @@ env.Library(
],
LIBDEPS_PRIVATE=[
'curop',
- "$BUILD_DIR/mongo/db/catalog/commit_quorum_options",
'$BUILD_DIR/mongo/db/catalog/uuid_catalog',
],
)
@@ -958,6 +957,7 @@ env.Library(
LIBDEPS=[
"$BUILD_DIR/mongo/base",
'$BUILD_DIR/mongo/db/catalog_raii',
+ "$BUILD_DIR/mongo/db/catalog/commit_quorum_options",
"$BUILD_DIR/mongo/db/catalog/index_builds_manager",
],
LIBDEPS_PRIVATE=[
@@ -976,8 +976,8 @@ env.CppUnitTest(
"index_builds_coordinator_mongod_test.cpp",
],
LIBDEPS=[
- "$BUILD_DIR/mongo/db/catalog/catalog_test_fixture",
"index_builds_coordinator_mongod",
+ "$BUILD_DIR/mongo/db/catalog/catalog_test_fixture",
]
)