]> git.ipfire.org Git - people/bonnietwin/ipfire-2.x.git/commitdiff
make.sh: fix toolchain compression
authorArne Fitzenreiter <arne_f@ipfire.org>
Tue, 22 Jun 2021 06:40:24 +0000 (08:40 +0200)
committerArne Fitzenreiter <arne_f@ipfire.org>
Mon, 5 Jul 2021 05:42:39 +0000 (07:42 +0200)
the compression parameters was not accepted by zstd.

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
make.sh

diff --git a/make.sh b/make.sh
index 837a071237bb0a4b8b60ea5319e035e3f93dc630..2d89cf998a4a125172b29c229156efc47988f2e2 100755 (executable)
--- a/make.sh
+++ b/make.sh
@@ -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"
 
 ###############################################################################
 #