diff options
Diffstat (limited to 'src/mongo/SConscript')
-rw-r--r-- | src/mongo/SConscript | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/mongo/SConscript b/src/mongo/SConscript index 41f57bbe999..8fe048ffe28 100644 --- a/src/mongo/SConscript +++ b/src/mongo/SConscript @@ -684,12 +684,15 @@ if darwin or env["_HAVEPCAP"]: # --- shell --- # if you add a file here, you need to add it in scripting/engine.cpp and shell/createCPPfromJavaScriptFiles.js as well -env.JSHeader( "shell/mongo.cpp" , - [ "shell/utils.js","shell/utils_sh.js","shell/db.js","shell/mongo.js","shell/mr.js","shell/query.js","shell/collection.js"] ) +env.JSHeader("shell/mongo.cpp", + ["shell/assert.js", "shell/types.js", "shell/utils.js", "shell/utils_sh.js", + "shell/db.js", "shell/mongo.js", "shell/mr.js", "shell/query.js", + "shell/collection.js"]) # if you add a file here, you need to add it in shell/shell_utils.cpp and shell/createCPPfromJavaScriptFiles.js as well -env.JSHeader( "shell/mongo-server.cpp" , - ["shell/servers.js", "shell/shardingtest.js", "shell/servers_misc.js", "shell/replsettest.js", "shell/replsetbridge.js"] ) +env.JSHeader("shell/mongo-server.cpp", + ["shell/servers.js", "shell/shardingtest.js", + "shell/servers_misc.js", "shell/replsettest.js", "shell/replsetbridge.js"]) coreShellFiles = [ "shell/dbshell.cpp", "shell/shell_utils.cpp", |