diff options
author | Andrew Morrow <acm@mongodb.com> | 2015-08-08 18:58:46 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2015-08-10 16:34:15 -0400 |
commit | e263b980d8a34425f3eab33298a15eeffe8a0c29 (patch) | |
tree | 88b305c9247cb3054ae22f65f94a2da9118c319b /src/mongo/db/index | |
parent | c25ec46db69cea719a2a3eac9470374d7cea52f9 (diff) | |
download | mongo-e263b980d8a34425f3eab33298a15eeffe8a0c29.tar.gz |
SERVER-9666 Add more misssing LIBDEP edges
Diffstat (limited to 'src/mongo/db/index')
-rw-r--r-- | src/mongo/db/index/SConscript | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mongo/db/index/SConscript b/src/mongo/db/index/SConscript index 1eca5ca05e3..ea44de8ec40 100644 --- a/src/mongo/db/index/SConscript +++ b/src/mongo/db/index/SConscript @@ -52,6 +52,9 @@ env.Library( LIBDEPS=[ '$BUILD_DIR/mongo/base', '$BUILD_DIR/mongo/bson/util/bson_extract', + '$BUILD_DIR/mongo/db/geo/geometry', + '$BUILD_DIR/mongo/db/geo/geoparser', + '$BUILD_DIR/mongo/db/index_names', '$BUILD_DIR/mongo/db/mongohasher', '$BUILD_DIR/third_party/s2/s2', ] @@ -70,6 +73,6 @@ env.CppUnitTest( env.Library('s2_keys', [ 's2_keys.cpp' ], LIBDEPS=[ - '$BUILD_DIR/mongo/db/geo/geometry', + '$BUILD_DIR/mongo/db/geo/geometry', ], ) |