summaryrefslogtreecommitdiff
path: root/src/mongo/SConscript
diff options
context:
space:
mode:
authorMathew Robinson <chasinglogic@gmail.com>2019-07-11 16:12:34 -0400
committerMathew Robinson <chasinglogic@gmail.com>2019-08-12 15:52:46 -0400
commit780afd77baf061879b05e07b4022a81ab2470af7 (patch)
treefe86b68bdd92d2ddccf67f2534c72a20018c6265 /src/mongo/SConscript
parenta13bd1716fa21b756b3b380027aefa53b6099db0 (diff)
downloadmongo-780afd77baf061879b05e07b4022a81ab2470af7.tar.gz
SERVER-41670 Add support for renaming awkward autogenerated package names via an aliasing description
Diffstat (limited to 'src/mongo/SConscript')
-rw-r--r--src/mongo/SConscript8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mongo/SConscript b/src/mongo/SConscript
index ab626aea4d4..a850bd9f016 100644
--- a/src/mongo/SConscript
+++ b/src/mongo/SConscript
@@ -454,6 +454,7 @@ mongod = env.Program(
],
AIB_COMPONENT="servers",
AIB_COMPONENTS_EXTRA=[
+ "dist",
"default",
"core",
],
@@ -557,6 +558,7 @@ mongos = env.Program(
],
AIB_COMPONENT="servers",
AIB_COMPONENTS_EXTRA=[
+ "dist",
"core",
]
)
@@ -651,6 +653,7 @@ if not has_option('noshell') and usemozjs:
],
AIB_COMPONENT="shell",
AIB_COMPONENTS_EXTRA=[
+ "dist",
"core",
],
)
@@ -736,6 +739,7 @@ def installExternalBinary( e, name_str ):
name
],
AIB_COMPONENT='tools',
+ AIB_COMPONENTS_EXTRA=['dist'],
AIB_ROLE='runtime',
)
return
@@ -756,6 +760,7 @@ if has_option("use-new-tools"):
target='$DESTDIR',
source=env.File('#/src/mongo-tools/distsrc/THIRD-PARTY-NOTICES.gotools'),
AIB_COMPONENT='tools',
+ AIB_COMPONENTS_EXTRA=['dist'],
AIB_ROLE='base',
)
else:
@@ -796,6 +801,7 @@ if hygienic:
distsrc.File('MPL-2'),
],
AIB_COMPONENT='common',
+ AIB_COMPONENTS_EXTRA=['dist'],
AIB_ROLE='base',
)
else:
@@ -812,6 +818,7 @@ if hygienic:
if enterprise_license else distsrc.File('LICENSE-Community.txt'),
],
AIB_COMPONENT='common',
+ AIB_COMPONENTS_EXTRA=['dist'],
AIB_ROLE='base',
)
# If no module has introduced a file named LICENSE-Enterprise.txt then this
@@ -873,6 +880,7 @@ else:
compass_installer,
],
AIB_COMPONENT='tools',
+ AIB_COMPONENTS_EXTRA=['dist'],
AIB_ROLE='runtime',
)