summaryrefslogtreecommitdiff
path: root/src/mongo/SConscript
diff options
context:
space:
mode:
authorSara Golemon <sara.golemon@mongodb.com>2017-09-14 15:24:18 -0400
committerSara Golemon <sara.golemon@mongodb.com>2017-09-21 11:19:26 -0400
commitf3bf7e7920a51df7100238a55c304ed7cd3aed1f (patch)
treea43a89c9a0f960cea7a2f9ce31c5ecc3243d5131 /src/mongo/SConscript
parent6c4c5f47b2e3fbf841683448a5e117e86f72c4ef (diff)
downloadmongo-f3bf7e7920a51df7100238a55c304ed7cd3aed1f.tar.gz
SERVER-29921 rewrite URI parser
Diffstat (limited to 'src/mongo/SConscript')
-rw-r--r--src/mongo/SConscript17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/mongo/SConscript b/src/mongo/SConscript
index 96c41128916..94cd4e88f66 100644
--- a/src/mongo/SConscript
+++ b/src/mongo/SConscript
@@ -444,12 +444,17 @@ if not has_option('noshell') and usemozjs:
mongo_shell = shellEnv.Program(
"mongo",
["shell/dbshell.cpp"] + env.WindowsResourceFile("shell/shell.rc"),
- LIBDEPS=["$BUILD_DIR/third_party/shim_pcrecpp",
- "shell_core",
- "db/server_options_core",
- "client/clientdriver",
- "$BUILD_DIR/mongo/util/password",
- ])
+ LIBDEPS=[
+ "$BUILD_DIR/third_party/shim_pcrecpp",
+ "shell_core",
+ "db/server_options_core",
+ "client/clientdriver",
+ "$BUILD_DIR/mongo/util/password",
+ ],
+ LIBDEPS_PRIVATE=[
+ "$BUILD_DIR/mongo/client/connection_string",
+ ]
+ )
shellEnv.Install( '#/', mongo_shell )
else: