aboutsummaryrefslogtreecommitdiff
path: root/src/crypto
diff options
context:
space:
mode:
authorThom Wiggers <thom@thomwiggers.nl>2020-09-29 09:34:08 +0000
committerEmmanuel Odeke <emm.odeke@gmail.com>2020-10-24 00:32:11 +0000
commita36493eb3c7f8c990f5112f70e66270372a5b12e (patch)
tree36fc2d9a573a2b0f24bf47dd14386f41276bd637 /src/crypto
parent64dc25b2db5d5be55f3f2fde3daac6c8a2873235 (diff)
downloadgo-a36493eb3c7f8c990f5112f70e66270372a5b12e.tar.gz
go-a36493eb3c7f8c990f5112f70e66270372a5b12e.zip
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 Change-Id: I2dd257f3121d6c6c62c6aeba52e1c74046b3c584 GitHub-Last-Rev: 6d4eeafadf0b4671b7e17c6810f1a66a9fda7d3c GitHub-Pull-Request: golang/go#41630 Reviewed-on: https://go-review.googlesource.com/c/go/+/257517 Trust: Emmanuel Odeke <emm.odeke@gmail.com> Reviewed-by: Filippo Valsorda <filippo@golang.org>
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/tls/handshake_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/tls/handshake_test.go b/src/crypto/tls/handshake_test.go
index 224edcd5c7..605be587b5 100644
--- a/src/crypto/tls/handshake_test.go
+++ b/src/crypto/tls/handshake_test.go
@@ -86,7 +86,7 @@ func checkOpenSSLVersion() error {
println("to update the test data.")
println("")
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("***********************************************")