From: Darren Tucker Date: Mon, 5 May 2025 22:07:23 +0000 (+1000) Subject: Boringssl now puts libcrypto in a different place. X-Git-Tag: V_10_1_P1~319 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57eb87b15bd0343372f99d661ce95efb25a16f1e;p=thirdparty%2Fopenssh-portable.git Boringssl now puts libcrypto in a different place. --- diff --git a/.github/setup_ci.sh b/.github/setup_ci.sh index 9b2767a85..df70c96ec 100755 --- a/.github/setup_ci.sh +++ b/.github/setup_ci.sh @@ -248,7 +248,7 @@ if [ ! -z "${INSTALL_BORINGSSL}" ]; then cd ${HOME}/boringssl && mkdir build && cd build && cmake -GNinja -DCMAKE_POSITION_INDEPENDENT_CODE=ON .. && ninja && mkdir -p /opt/boringssl/lib && - cp ${HOME}/boringssl/build/crypto/libcrypto.a /opt/boringssl/lib && + cp ${HOME}/boringssl/build/libcrypto.a /opt/boringssl/lib && cp -r ${HOME}/boringssl/include /opt/boringssl) fi