diff options
author | Andrew Morrow <acm@mongodb.com> | 2015-04-23 16:29:14 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2015-04-24 15:31:06 -0400 |
commit | 721de7221e2058c3d96be40dbbc635e29dc67937 (patch) | |
tree | 8e70bed6af141926fad315df08499327338ad7da /src/mongo/db/pipeline | |
parent | 43a1f19186b2362fcccdf4baadc480c82eeac5a8 (diff) | |
download | mongo-721de7221e2058c3d96be40dbbc635e29dc67937.tar.gz |
SERVER-9666 Push foundation lib declaration into util directory
Diffstat (limited to 'src/mongo/db/pipeline')
-rw-r--r-- | src/mongo/db/pipeline/SConscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/pipeline/SConscript b/src/mongo/db/pipeline/SConscript index 9343876fbc8..5e70b2a5e61 100644 --- a/src/mongo/db/pipeline/SConscript +++ b/src/mongo/db/pipeline/SConscript @@ -7,7 +7,7 @@ env.Library( 'field_path.cpp', ], LIBDEPS=[ - '$BUILD_DIR/mongo/foundation', + '$BUILD_DIR/mongo/util/foundation', ] ) @@ -28,7 +28,7 @@ env.Library( LIBDEPS=[ 'field_path', '$BUILD_DIR/mongo/bson', - '$BUILD_DIR/mongo/foundation', + '$BUILD_DIR/mongo/util/foundation', '$BUILD_DIR/mongo/util/intrusive_counter', ] ) |