summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2019-05-10 12:34:01 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2019-05-10 12:34:01 -0400
commit6e62efce6a5ff27ba593dcdda6cf5c4b3e61380b (patch)
tree590a85ec2fcacdbbfeb97f40d99ed14a4d344bac /SConstruct
parente06d151dcbe0aa26167add972f9249e57e654efa (diff)
downloadmongo-6e62efce6a5ff27ba593dcdda6cf5c4b3e61380b.tar.gz
SERVER-40853 Remove OpenSSL from Windows Packages
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct5
1 files changed, 2 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index d616bbb08dc..beda0cec47b 100644
--- a/SConstruct
+++ b/SConstruct
@@ -3198,9 +3198,8 @@ def doConfigure(myenv):
else:
ssl_provider = "none"
- # The Windows build needs the openssl binaries if it targets openssl or includes the tools
- # since the tools link against openssl
- if conf.env.TargetOSIs('windows') and (ssl_provider == "openssl" or has_option("use-new-tools")):
+ # The Windows build needs the openssl binaries if it targets openssl
+ if conf.env.TargetOSIs('windows') and ssl_provider == "openssl":
# Add the SSL binaries to the zip file distribution
def addOpenSslLibraryToDistArchive(file_name):
openssl_bin_path = os.path.normpath(env['WINDOWS_OPENSSL_BIN'].lower())