This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push: new 25c2c7a Path seems to have changed from lib to lib64. Support both. 25c2c7a is described below commit 25c2c7a392c4d0eb4c67797bd4fa5b1ce023f6d2 Author: Mark Thomas <ma...@apache.org> AuthorDate: Fri Aug 20 18:56:27 2021 +0100 Path seems to have changed from lib to lib64. Support both. --- test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java b/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java index 07edc4b..9dafe46 100644 --- a/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java +++ b/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java @@ -337,7 +337,7 @@ public class TesterOpenSSL { // Explicit OpenSSL path may also need explicit lib path // (e.g. Gump needs this) openSSLLibPath = openSSLPath.substring(0, openSSLPath.lastIndexOf('/')); - openSSLLibPath = openSSLLibPath + "/../lib"; + openSSLLibPath = openSSLLibPath + "/../lib:" + openSSLLibPath + "/../lib64"; } List<String> cmd = new ArrayList<>(); cmd.add(openSSLPath); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org