summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2020-02-14 21:46:33 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-02-15 15:00:57 +0000
commit075fe424dbae0ff4b38d81d7d80cc70492cdd586 (patch)
treea61875cac3ac89a89cab37d8b1bf7e5712d81d62
parentda28fac8ae4d26a582000151ec1d24604f9a8fb3 (diff)
downloadmongo-075fe424dbae0ff4b38d81d7d80cc70492cdd586.tar.gz
SERVER-46155 Restore root install of mongobridge in non-hygienic builds
-rw-r--r--src/mongo/tools/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mongo/tools/SConscript b/src/mongo/tools/SConscript
index 840000a4217..c503f4c98ca 100644
--- a/src/mongo/tools/SConscript
+++ b/src/mongo/tools/SConscript
@@ -31,3 +31,6 @@ mongobridge = env.Program(
],
AIB_COMPONENT='dist-test',
)
+
+if get_option("install-mode") != "hygienic":
+ env.Install("#/", mongobridge)