diff options
author | Andrew Morrow <acm@mongodb.com> | 2019-04-17 15:01:22 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2019-04-17 16:37:41 -0400 |
commit | de389343ecf68ec2df86cd4715dcdcfd678989f1 (patch) | |
tree | e9f8bee8fe1e9a5b2da0cdcc6bbdc1b47b494688 /src/mongo/tools | |
parent | c539768709f9dbf1cdc59e7dc156c8eab7dad828 (diff) | |
download | mongo-de389343ecf68ec2df86cd4715dcdcfd678989f1.tar.gz |
SERVER-40698 Only link WT to mongoe things when enabled
Diffstat (limited to 'src/mongo/tools')
-rw-r--r-- | src/mongo/tools/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/tools/SConscript b/src/mongo/tools/SConscript index bb8047acf8d..0e180170784 100644 --- a/src/mongo/tools/SConscript +++ b/src/mongo/tools/SConscript @@ -45,7 +45,7 @@ mongoebench = yamlEnv.Program( LIBDEPS=[ '$BUILD_DIR/mongo/db/dbdirectclient', '$BUILD_DIR/mongo/db/storage/storage_options', - '$BUILD_DIR/mongo/db/storage/wiredtiger/storage_wiredtiger', + '$BUILD_DIR/mongo/db/storage/wiredtiger/storage_wiredtiger' if get_option('wiredtiger') == 'on' else [], '$BUILD_DIR/mongo/embedded/embedded', '$BUILD_DIR/mongo/embedded/embedded_integration_helpers', '$BUILD_DIR/mongo/shell/benchrun', |