diff options
author | Henrik Edin <henrik.edin@mongodb.com> | 2019-01-30 16:52:07 -0500 |
---|---|---|
committer | Henrik Edin <henrik.edin@mongodb.com> | 2019-02-01 17:06:10 -0500 |
commit | 66430d75e33827da60195deb317058c71f75e03f (patch) | |
tree | 8ca6fcca749a630afca95415638052ed429d2e70 /src/mongo/tools | |
parent | 2dc3359cfe83cafa0f450a0dc7e2815f48ad08b4 (diff) | |
download | mongo-66430d75e33827da60195deb317058c71f75e03f.tar.gz |
SERVER-38176 Compile with /permissive- on MSVC to make the compiler strictly standard conformant.
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 ec512743904..e27673dd9b4 100644 --- a/src/mongo/tools/SConscript +++ b/src/mongo/tools/SConscript @@ -6,7 +6,7 @@ Import('get_option') env = env.Clone() yamlEnv = env.Clone() -yamlEnv.InjectThirdPartyIncludePaths(libraries=['yaml']) +yamlEnv.InjectThirdParty(libraries=['yaml']) mongobridge = env.Program( target="mongobridge", |