make.sh: fix toolchain compression

the compression parameters was not accepted by zstd.

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
Arne Fitzenreiter
2021-06-22 08:40:24 +02:00
parent c01acbfea6
commit 178eaf31cf

11
make.sh
View File

@@ -38,15 +38,10 @@ GIT_BRANCH="$(git rev-parse --abbrev-ref HEAD)" # Git Branch
GIT_TAG="$(git tag | tail -1)" # Git Tag
GIT_LASTCOMMIT="$(git rev-parse --verify HEAD)" # Last commit
TOOLCHAINVER=20210202
TOOLCHAINVER=20210622
ZSTD_OPT=(
# Compress in parallel using all processor cores
-T0
# Compress as best as we can
--ultra -22
)
# use multicore and max compression
ZSTD_OPT="-T0 --ultra -22"
###############################################################################
#