summaryrefslogtreecommitdiff
path: root/src/mongo/tools
diff options
context:
space:
mode:
authorMathew Robinson <mathew.robinson@mongodb.com>2019-11-06 17:39:43 +0000
committerevergreen <evergreen@mongodb.com>2019-11-06 17:39:43 +0000
commitba9a82eab12ca8eb3afb35fcd27de2a970dd427d (patch)
tree5d2c21d91a342c1c192ecd1c4075bd981b250b02 /src/mongo/tools
parent6ef06c9093462bec22c2219c341b0219f1864cca (diff)
downloadmongo-ba9a82eab12ca8eb3afb35fcd27de2a970dd427d.tar.gz
SERVER-44364
Diffstat (limited to 'src/mongo/tools')
-rw-r--r--src/mongo/tools/SConscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/tools/SConscript b/src/mongo/tools/SConscript
index da402669d69..0183a6ce19e 100644
--- a/src/mongo/tools/SConscript
+++ b/src/mongo/tools/SConscript
@@ -56,9 +56,9 @@ mongoebench = yamlEnv.Program(
],
)
-hygienic = get_option('install-mode') == 'hygienic'
-if not hygienic:
- env.Install("#/", mongobridge)
- env.Install("#/", mongoebench)
+# TODO: remove this when hygienic is driving all tarball creation
+install_mongobridge = env.Install("#/", mongobridge)
+install_mongoebench = env.Install("#/", mongoebench)
+env.Alias("install-tools", [install_mongoebench, install_mongobridge])
env.Alias('all', mongoebench) # This ensures it compiles and links, but doesn't copy it anywhere.