summaryrefslogtreecommitdiff
path: root/src/mongo/db/index
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2015-04-30 14:01:24 -0400
committerAndrew Morrow <acm@mongodb.com>2015-05-06 15:47:21 -0400
commit86c320b783c8939490d6e7af0f518b3db7b24ed7 (patch)
treecb52e296575937f95d55cc5920babc68e5e06625 /src/mongo/db/index
parent543ca54c22e13056b4f278e36b4c1b6436c2f1cb (diff)
downloadmongo-86c320b783c8939490d6e7af0f518b3db7b24ed7.tar.gz
SERVER-9666 Split up and push bson library into bson directory
Diffstat (limited to 'src/mongo/db/index')
-rw-r--r--src/mongo/db/index/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/index/SConscript b/src/mongo/db/index/SConscript
index 2c47b60f660..8e15af268aa 100644
--- a/src/mongo/db/index/SConscript
+++ b/src/mongo/db/index/SConscript
@@ -18,7 +18,7 @@ env.Library(
'expression_keys_private.cpp',
],
LIBDEPS=[
- '$BUILD_DIR/mongo/bson',
+ '$BUILD_DIR/mongo/bson/bson',
'$BUILD_DIR/mongo/db/fts/base',
'$BUILD_DIR/mongo/db/geo/geometry',
'$BUILD_DIR/mongo/db/geo/geoparser',
@@ -34,7 +34,7 @@ env.Library(
],
LIBDEPS=[
'key_generator',
- '$BUILD_DIR/mongo/bson',
+ '$BUILD_DIR/mongo/bson/bson',
],
)