diff options
author | Andrew Morrow <andrew.morrow@10gen.com> | 2019-12-18 22:03:37 +0000 |
---|---|---|
committer | evergreen <evergreen@mongodb.com> | 2019-12-18 22:03:37 +0000 |
commit | e7f76047ebac65f583d60ed5e879525c9c03d52f (patch) | |
tree | 6c24df7d8c6c6f93fba2c239d993ad7d35736ec8 /src | |
parent | 8ea803b42abc5b9b653fe7931e90f00f0e8c8043 (diff) | |
download | mongo-e7f76047ebac65f583d60ed5e879525c9c03d52f.tar.gz |
SERVER-44992 Give some key programs tags that match their name
Diffstat (limited to 'src')
-rw-r--r-- | src/mongo/SConscript | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/src/mongo/SConscript b/src/mongo/SConscript index 5f2237f4533..361151df1bc 100644 --- a/src/mongo/SConscript +++ b/src/mongo/SConscript @@ -474,11 +474,12 @@ mongod = env.Program( LIBDEPS_PRIVATE=[ 'db/index/index_access_methods', ], - AIB_COMPONENT="servers", + AIB_COMPONENT="mongod", AIB_COMPONENTS_EXTRA=[ - "dist", - "default", "core", + "default", + "dist", + "servers", ], ) @@ -581,10 +582,11 @@ mongos = env.Program( 'util/options_parser/options_parser_init', 'util/options_parser/options_parser', ], - AIB_COMPONENT="servers", + AIB_COMPONENT="mongos", AIB_COMPONENTS_EXTRA=[ - "dist", "core", + "dist", + "servers" ] ) @@ -676,10 +678,11 @@ if not has_option('noshell') and usemozjs: "$BUILD_DIR/mongo/client/connection_string", '$BUILD_DIR/mongo/util/net/ssl_options_client' if get_option('ssl') == 'on' else '', ], - AIB_COMPONENT="shell", + AIB_COMPONENT="mongo", AIB_COMPONENTS_EXTRA=[ - "dist", "core", + "dist", + "shell", ], ) |