Skip to content

Commit 705e94e

Browse files
committed
Fix build scripts
1 parent b268888 commit 705e94e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/build.alpine.release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -xe
44
apk add gcc g++ build-base linux-headers cmake make autoconf automake libtool python2 python3
55
apk add mbedtls-dev mbedtls-static zlib-dev rapidjson-dev libevent-dev libevent-static zlib-static pcre2-dev
66

7-
git clone https://github.com/curl/curl --depth=1 --branch curl-8_4_1
7+
git clone https://github.com/curl/curl --depth=1 --branch curl-8_4_0
88
cd curl
99
cmake -DCURL_USE_MBEDTLS=ON -DHTTP_ONLY=ON -DBUILD_TESTING=OFF -DBUILD_SHARED_LIBS=OFF -DCMAKE_USE_LIBSSH2=OFF -DBUILD_CURL_EXE=OFF . > /dev/null
1010
make install -j2 > /dev/null

scripts/build.windows.release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -xe
33

4-
git clone https://github.com/curl/curl --depth=1 --branch curl-8_4_1
4+
git clone https://github.com/curl/curl --depth=1 --branch curl-8_4_0
55
cd curl
66
cmake -DCMAKE_BUILD_TYPE=Release -DCURL_USE_LIBSSH2=OFF -DHTTP_ONLY=ON -DCURL_USE_SCHANNEL=ON -DBUILD_SHARED_LIBS=OFF -DBUILD_CURL_EXE=OFF -DCMAKE_INSTALL_PREFIX="$MINGW_PREFIX" -G "Unix Makefiles" -DHAVE_LIBIDN2=OFF -DCURL_USE_LIBPSL=OFF .
77
make install -j4

0 commit comments

Comments
 (0)