diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2019-06-26 16:15:03 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2019-06-26 16:41:26 -0400 |
commit | 4511fc257a034155eb48b6a19c1a5920a2ce7bf7 (patch) | |
tree | 8f8f60a5ab589f9e55802ddc287620dfdb20f507 /src | |
parent | 140a0ff6ee7b32241ef379f2102c394ad68a50f2 (diff) | |
download | mongo-4511fc257a034155eb48b6a19c1a5920a2ce7bf7.tar.gz |
SERVER-41837 Fix unittest compilation on non-ssl mac builds
Diffstat (limited to 'src')
-rw-r--r-- | src/mongo/shell/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/shell/SConscript b/src/mongo/shell/SConscript index 128b7936e28..ea860f83fb3 100644 --- a/src/mongo/shell/SConscript +++ b/src/mongo/shell/SConscript @@ -146,7 +146,7 @@ kmsEnv.Library( ], ) -if "tom" not in env["MONGO_CRYPTO"]: +if get_option('ssl') == 'on': env.CppUnitTest( target='kms_test', source='kms_test.cpp', |