diff options
author | Andrew Morrow <acm@mongodb.com> | 2020-07-20 14:17:39 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-07-21 16:29:11 +0000 |
commit | cb99a85f986b7cdba9c31dca903ac2f57620af47 (patch) | |
tree | 01285095c3ffc730e8bf1619cc6ff86192afe822 /src/third_party/boost-1.70.0 | |
parent | 005fc5c3f5f46743d5c03c49f41418351878ece1 (diff) | |
download | mongo-cb99a85f986b7cdba9c31dca903ac2f57620af47.tar.gz |
SERVER-49356 Rehome target declarations out of src/mongo/SConscript
Diffstat (limited to 'src/third_party/boost-1.70.0')
-rw-r--r-- | src/third_party/boost-1.70.0/SConscript | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/third_party/boost-1.70.0/SConscript b/src/third_party/boost-1.70.0/SConscript index 9d5ab1ccee0..1effcaefe2a 100644 --- a/src/third_party/boost-1.70.0/SConscript +++ b/src/third_party/boost-1.70.0/SConscript @@ -15,7 +15,7 @@ env.Library( 'libs/system/src/error_code.cpp', ], LIBDEPS=[ - '$BUILD_DIR/mongo/boost_assert_shim', + '$BUILD_DIR/mongo/util/boost_assert_shim', ], ) @@ -32,7 +32,7 @@ env.Library( 'libs/filesystem/src/windows_file_codecvt.cpp', ], LIBDEPS=[ - '$BUILD_DIR/mongo/boost_assert_shim', + '$BUILD_DIR/mongo/util/boost_assert_shim', 'boost_system', ], ) @@ -58,7 +58,7 @@ env.Library( 'illegal_cyclic_or_unresolved_dependencies_whitelisted', ], LIBDEPS=[ - '$BUILD_DIR/mongo/boost_assert_shim', + '$BUILD_DIR/mongo/util/boost_assert_shim', ], ) @@ -69,7 +69,7 @@ env.Library( 'libs/iostreams/src/mapped_file.cpp', ], LIBDEPS=[ - '$BUILD_DIR/mongo/boost_assert_shim', + '$BUILD_DIR/mongo/util/boost_assert_shim', 'boost_system', ]) @@ -99,7 +99,7 @@ threadlib_env.Library( 'libs/thread/src/future.cpp', ] + boost_thread_source, LIBDEPS=[ - '$BUILD_DIR/mongo/boost_assert_shim', + '$BUILD_DIR/mongo/util/boost_assert_shim', ] ) @@ -160,7 +160,7 @@ loglib_env.Library( 'libs/log/src/trivial.cpp', ], LIBDEPS=[ - '$BUILD_DIR/mongo/boost_assert_shim', + '$BUILD_DIR/mongo/util/boost_assert_shim', 'boost_filesystem', 'boost_thread', ] |