summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorMathew Robinson <mathew.robinson@mongodb.com>2019-11-15 15:33:50 +0000
committerevergreen <evergreen@mongodb.com>2019-11-15 15:33:50 +0000
commite9895101d823de26682795d779f6b46feec854df (patch)
tree99aba5a4a1e12277053f83aa51a3e90e79963e9c /SConstruct
parent73b456d5c059b17d1c7f0f8badb7c72391ee2173 (diff)
downloadmongo-e9895101d823de26682795d779f6b46feec854df.tar.gz
SERVER-44543 mh binaries is never uploaded
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 2 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index a5176211ffb..229280b8390 100644
--- a/SConstruct
+++ b/SConstruct
@@ -3900,7 +3900,7 @@ if get_option('install-mode') == 'hygienic':
# TODO: we should be able to move this to where the mqlrun binary is
# defined when AIB correctly uses environments instead of hooking into
# the first environment used.
- name="${MH_DIST_BASENAME}",
+ name="${MH_DIST_BASENAME}-binaries",
)
env.AddPackageNameAlias(
@@ -4108,7 +4108,7 @@ def add_version_to_distsrc(env, archive):
env.AddDistSrcCallback(add_version_to_distsrc)
env['SERVER_DIST_BASENAME'] = env.subst('mongodb-%s-$MONGO_DISTNAME' % (getSystemInstallName()))
-env['MH_DIST_BASENAME'] = env.subst('mh-%s-$MONGO_DISTNAME' % (getSystemInstallName()))
+env['MH_DIST_BASENAME'] = 'mh'
if get_option('legacy-tarball') == 'true':
if ('tar-dist' not in COMMAND_LINE_TARGETS and
'zip-dist' not in COMMAND_LINE_TARGETS and