diff options
author | Benety Goh <benety@mongodb.com> | 2021-04-03 09:08:55 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-04-03 13:32:52 +0000 |
commit | a6e191722a20c3c7c6e84d80dca1978bf4f4c165 (patch) | |
tree | bc2099d5d0bef81710e5803a64b5adc101c47817 /src/mongo/db/index | |
parent | d9a2579fe8cb21b24ba0541cdb68a8c0b81cd183 (diff) | |
download | mongo-a6e191722a20c3c7c6e84d80dca1978bf4f4c165.tar.gz |
SERVER-55708 clean up index_descriptor library dependencies
These edges should not be necessary after commit b63e8cc9ba5c3897c47a33a6aec9981f2e3c53de.
Diffstat (limited to 'src/mongo/db/index')
-rw-r--r-- | src/mongo/db/index/SConscript | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mongo/db/index/SConscript b/src/mongo/db/index/SConscript index 01cd2ba04d8..3e55590824c 100644 --- a/src/mongo/db/index/SConscript +++ b/src/mongo/db/index/SConscript @@ -9,12 +9,9 @@ env.Library( source=[ 'index_descriptor.cpp', ], - LIBDEPS=[ + LIBDEPS_PRIVATE=[ '$BUILD_DIR/mongo/base', - '$BUILD_DIR/mongo/db/catalog/collection', '$BUILD_DIR/mongo/db/catalog/index_catalog', - ], - LIBDEPS_PRIVATE=[ '$BUILD_DIR/mongo/db/index_names', '$BUILD_DIR/mongo/db/matcher/expressions', '$BUILD_DIR/mongo/db/namespace_string', |