summaryrefslogtreecommitdiff
path: root/src/mongo/SConscript
diff options
context:
space:
mode:
authorSara Golemon <sara.golemon@mongodb.com>2017-12-08 17:09:42 -0500
committerSara Golemon <sara.golemon@mongodb.com>2017-12-12 15:05:00 -0500
commit8cb7435be3529fb4f982ec53373db5ecd9ad4efb (patch)
tree61af444151d9ac9531ec479d1831271a2cf8425e /src/mongo/SConscript
parent143093d6a23b1b84274461bebb9e88e11b4f2a2f (diff)
downloadmongo-8cb7435be3529fb4f982ec53373db5ecd9ad4efb.tar.gz
SERVER-32275 Remove MONGODB-CR client support from monogd/mongos
Diffstat (limited to 'src/mongo/SConscript')
-rw-r--r--src/mongo/SConscript5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mongo/SConscript b/src/mongo/SConscript
index 753e4e81ed4..0517e674d6d 100644
--- a/src/mongo/SConscript
+++ b/src/mongo/SConscript
@@ -484,7 +484,10 @@ if not has_option('noshell') and usemozjs:
mongo_shell = shellEnv.Program(
"mongo",
- ["shell/dbshell.cpp"] + env.WindowsResourceFile("shell/shell.rc"),
+ [
+ "shell/dbshell.cpp",
+ "shell/mongodbcr.cpp",
+ ] + env.WindowsResourceFile("shell/shell.rc"),
LIBDEPS=[
"$BUILD_DIR/third_party/shim_pcrecpp",
"shell_core",