mirror of
http://git.haproxy.org/git/haproxy.git
synced 2026-02-04 08:43:40 +02:00
SCRIPTS: build-ssl: fix quictls build for 1.1.1 versions
The quictls build function was not using anymore the right make target to build older versions. make all must be used instead of make build_sw for 1.1.1.
This commit is contained in:
@@ -222,7 +222,11 @@ build_quictls () {
|
||||
cp -r include/* ${BUILDSSL_DESTDIR}/include
|
||||
else
|
||||
./config shared no-tests ${QUICTLS_EXTRA_ARGS:-} --prefix="${BUILDSSL_DESTDIR}" --openssldir="${BUILDSSL_DESTDIR}" --libdir=lib -DPURIFY
|
||||
make -j$(nproc) build_sw
|
||||
if [ -z "${QUICTLS_VERSION##OpenSSL_1_1_1*}" ]; then
|
||||
make all
|
||||
else
|
||||
make -j$(nproc) build_sw
|
||||
fi
|
||||
make install_sw
|
||||
fi
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user