crypto/tls: add no-shared to openssl build instructions

This prevents the custom-built version of openssl prefering the system
libraries over the ones compiled with the specified (weak crypto)
options necessary to generate the updates. This difference can lead to
confusing failures when updating the tests.

Fixes #31809
This commit is contained in:
Thom Wiggers 2020-09-25 15:13:46 +02:00
parent 2333c6299f
commit 6d4eeafadf
No known key found for this signature in database
GPG key ID: 001BB0A7CE26E363

View file

@ -86,7 +86,7 @@ func checkOpenSSLVersion() error {
println("to update the test data.") println("to update the test data.")
println("") println("")
println("Configure it with:") println("Configure it with:")
println("./Configure enable-weak-ssl-ciphers") println("./Configure enable-weak-ssl-ciphers no-shared")
println("and then add the apps/ directory at the front of your PATH.") println("and then add the apps/ directory at the front of your PATH.")
println("***********************************************") println("***********************************************")