From 68a04a3fe46f590d99525e9282861a4fca66cc49 Mon Sep 17 00:00:00 2001 From: Heikki Halmet Date: Wed, 18 Jan 2023 07:37:01 +0000 Subject: [PATCH] Add OpenSSL to the PATH for linux targets This is required by QtApplicationmanager with openSUSE target Change-Id: Ia27353d56c162461eb7f38700cd0ea56cce16e6b Reviewed-by: Qt CI Bot Reviewed-by: Jani Heikkinen (cherry picked from commit 6f1b182a6d0ee178e676be093172edfe7c657dfb) Reviewed-by: Qt Cherry-pick Bot --- coin/provisioning/common/unix/install-openssl.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/coin/provisioning/common/unix/install-openssl.sh b/coin/provisioning/common/unix/install-openssl.sh index 221b4435..ea2d9ffd 100755 --- a/coin/provisioning/common/unix/install-openssl.sh +++ b/coin/provisioning/common/unix/install-openssl.sh @@ -65,6 +65,7 @@ if [[ "$os" == "linux" ]]; then ./Configure --prefix="$opensslHome" shared no-ssl3-method enable-ec_nistp_64_gcc_128 linux-x86_64 "-Wa,--noexecstack" make && make install_sw install_ssldirs SetEnvVar "OPENSSL_HOME" "$opensslHome" + SetEnvVar "PATH" "\"$opensslHome/bin:\$PATH\"" if uname -a |grep -q "Ubuntu"; then echo "export LD_LIBRARY_PATH=$opensslHome/lib:$LD_LIBRARY_PATH" >> ~/.bash_profile else