summaryrefslogtreecommitdiff
path: root/src/mongo/tools/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/tools/SConscript')
-rw-r--r--src/mongo/tools/SConscript23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/mongo/tools/SConscript b/src/mongo/tools/SConscript
index e65cbc2c209..095b2485927 100644
--- a/src/mongo/tools/SConscript
+++ b/src/mongo/tools/SConscript
@@ -32,29 +32,6 @@ mongobridge = env.Program(
],
)
-mongoebench = yamlEnv.Program(
- target='mongoebench',
- source=[
- 'mongoebench_main.cpp',
- 'mongoebench_options.cpp',
- 'mongoebench_options_init.cpp',
- ],
- LIBDEPS=[
- '$BUILD_DIR/mongo/db/dbdirectclient',
- '$BUILD_DIR/mongo/embedded/embedded',
- '$BUILD_DIR/mongo/embedded/embedded_integration_helpers',
- '$BUILD_DIR/mongo/shell/benchrun',
- '$BUILD_DIR/mongo/util/signal_handlers',
- ],
- INSTALL_ALIAS=[
- 'embedded-test',
- 'tools',
- ],
-)
-
hygienic = get_option('install-mode') == 'hygienic'
if not hygienic:
env.Install("#/", mongobridge)
- env.Install("#/", mongoebench)
-
-env.Alias('all', mongoebench) # This ensures it compiles and links, but doesn't copy it anywhere.