diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-08-15 12:07:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-08-15 12:07:55 +0000 |
commit | 400dd63304ac4cf32d3de99b1a72ee38c19aa01d (patch) | |
tree | 7785814cca173c33a5d389a029dc4aa1e9fb822b /scripts | |
parent | Releasing debian version 1.6.3+20220719-4. (diff) | |
download | ttyd-400dd63304ac4cf32d3de99b1a72ee38c19aa01d.tar.xz ttyd-400dd63304ac4cf32d3de99b1a72ee38c19aa01d.zip |
Merging upstream version 1.7.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/cross-build.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/cross-build.sh b/scripts/cross-build.sh index d4391a7..22c9849 100755 --- a/scripts/cross-build.sh +++ b/scripts/cross-build.sh @@ -130,11 +130,12 @@ build() { ALIAS="$2" STAGE_DIR="${STAGE_ROOT}/${TARGET}" BUILD_DIR="${BUILD_ROOT}/${TARGET}" + MUSL_CC_URL="https://github.com/tsl0922/musl-toolchains/releases/download/2021-11-23" echo "=== Installing toolchain ${ALIAS} (${TARGET})..." mkdir -p "${CROSS_ROOT}" && export PATH="${PATH}:/opt/cross/bin" - curl -fSsLo- "https://musl.cc/${TARGET}-cross.tgz" | tar xz -C "${CROSS_ROOT}" --strip-components 1 + curl -fSsLo- "${MUSL_CC_URL}/${TARGET}-cross.tgz" | tar xz -C "${CROSS_ROOT}" --strip-components 1 echo "=== Building target ${ALIAS} (${TARGET})..." |