diff options
author | Andrew Morrow <acm@mongodb.com> | 2015-09-29 13:02:40 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2015-09-29 14:07:09 -0400 |
commit | eb852ab83e7b939f5edb8b35b35fc29a23763a38 (patch) | |
tree | 3026b9c8f883f4de460c52875148d1477df8bf55 /src | |
parent | c2265fdcc431b7ab15ff4da0f22615ccc7f9b4f7 (diff) | |
download | mongo-eb852ab83e7b939f5edb8b35b35fc29a23763a38.tar.gz |
SERVER-9666 Tag some newly incomplete libraries as such
Diffstat (limited to 'src')
-rw-r--r-- | src/mongo/db/s/SConscript | 6 | ||||
-rw-r--r-- | src/mongo/s/SConscript | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/mongo/db/s/SConscript b/src/mongo/db/s/SConscript index 6ef97a34827..71f0a17d745 100644 --- a/src/mongo/db/s/SConscript +++ b/src/mongo/db/s/SConscript @@ -53,7 +53,11 @@ env.Library( '$BUILD_DIR/mongo/s/serveronly', 'metadata', 'sharding', - ] + ], + LIBDEPS_TAGS=[ + # Depends on getDeleter, defined in s/serveronly, which would be circular. + 'incomplete', + ], ) env.CppUnitTest( diff --git a/src/mongo/s/SConscript b/src/mongo/s/SConscript index 821ce644be6..90e511601a4 100644 --- a/src/mongo/s/SConscript +++ b/src/mongo/s/SConscript @@ -24,7 +24,11 @@ env.Library( '$BUILD_DIR/mongo/s/catalog/forwarding_catalog_manager', 'client/sharding_connection_hook', 'coreshard', - ] + ], + LIBDEPS_TAGS=[ + # Depends on saveGLEStats, which lacks a unique definition + 'incomplete', + ], ) # Functionality shared between mongod and mongos |