From a708a9784aa06d5daa8ee93aa2612d21ef748791 Mon Sep 17 00:00:00 2001 From: Dmitry Belyavskiy Date: Wed, 11 Aug 2021 15:10:00 +0200 Subject: [PATCH] Explicitly set libdir to lib OpenSSL commit https://github.com/openssl/openssl/commit/74b7f339aa58af57c0e71b7efca66e6f2db5ae2e changed the default installation path on 64-bit systems. The recommended workaround is appending --libdir=lib --- .github/before_script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/before_script.sh b/.github/before_script.sh index 7a86543..6121ac5 100755 --- a/.github/before_script.sh +++ b/.github/before_script.sh @@ -13,7 +13,7 @@ git describe --always --long PREFIX=$HOME/opt -${SETARCH-} ./config shared -d --prefix=$PREFIX --openssldir=$PREFIX -Wl,-rpath=$PREFIX/lib +${SETARCH-} ./config shared -d --prefix=$PREFIX --libdir=lib --openssldir=$PREFIX -Wl,-rpath=$PREFIX/lib ${SETARCH-} make -s -j$(nproc) build_libs ${SETARCH-} make -s -j$(nproc) build_programs make -s install_sw -- 2.39.2