diff options
author | Benety Goh <benety@mongodb.com> | 2021-08-13 08:29:53 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-08-13 12:55:46 +0000 |
commit | b193bd00f63b32919e56a81ccf3a833a3003f8b6 (patch) | |
tree | 86bad138c27258e3ee399207f86c521ad3117673 /src/mongo/db/index | |
parent | 55609fd4aa7ffe07de80560d5598c29aaa8ae9be (diff) | |
download | mongo-b193bd00f63b32919e56a81ccf3a833a3003f8b6.tar.gz |
SERVER-59310 make timeseries_dotted_path_support library dependency private
Diffstat (limited to 'src/mongo/db/index')
-rw-r--r-- | src/mongo/db/index/SConscript | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/db/index/SConscript b/src/mongo/db/index/SConscript index 7096bc54098..9e471612dcf 100644 --- a/src/mongo/db/index/SConscript +++ b/src/mongo/db/index/SConscript @@ -72,11 +72,13 @@ env.Library( '$BUILD_DIR/mongo/db/query/projection_ast', '$BUILD_DIR/mongo/db/query/sort_pattern', '$BUILD_DIR/mongo/db/record_id_helpers', - '$BUILD_DIR/mongo/db/timeseries/timeseries_dotted_path_support', '$BUILD_DIR/third_party/s2/s2', 'expression_params', 'index_descriptor', ], + LIBDEPS_PRIVATE=[ + '$BUILD_DIR/mongo/db/timeseries/timeseries_dotted_path_support', + ], ) env.Benchmark( |