mirror of https://github.com/golang/go.git
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:
parent
2333c6299f
commit
6d4eeafadf
|
|
@ -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("***********************************************")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue