From d5fdb6a695b457cf1eea8d7b638ffde029231080 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 15 Jul 2019 16:14:35 +0200 Subject: [PATCH] util/opensslwrap.sh: adjust to define OPENSSL_MODULES as well Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/9379) --- util/opensslwrap.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/util/opensslwrap.sh b/util/opensslwrap.sh index b27cbb897f..7a38830270 100755 --- a/util/opensslwrap.sh +++ b/util/opensslwrap.sh @@ -6,6 +6,9 @@ OPENSSL="${HERE}../apps/openssl" if [ -d "${HERE}../engines" -a "x$OPENSSL_ENGINES" = "x" ]; then OPENSSL_ENGINES="${HERE}../engines"; export OPENSSL_ENGINES fi +if [ -d "${HERE}../providers" -a "x$OPENSSL_MODULES" = "x" ]; then + OPENSSL_MODULES="${HERE}../providers"; export OPENSSL_MODULES +fi if [ -x "${OPENSSL}.exe" ]; then # The original reason for this script existence is to work around -- 2.25.1