From: Michael Tremer Date: Sun, 11 Jul 2021 13:12:15 +0000 (+0100) Subject: make.sh: Explicitely call zstd to extract toolchain X-Git-Tag: v2.27-core159~39 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cec532b4cc501ee5b97c64d7f042bbcdc58283bf;p=ipfire-2.x.git make.sh: Explicitely call zstd to extract toolchain Some older versions of tar do not recognise Zstandard, yet. Signed-off-by: Michael Tremer Tested-by: Peter Müller Signed-off-by: Arne Fitzenreiter --- diff --git a/make.sh b/make.sh index 7bdeeaf627..13a48f4616 100755 --- a/make.sh +++ b/make.sh @@ -1735,7 +1735,7 @@ build) PACKAGENAME=${PACKAGE%.tar.zst} print_build_stage "Packaged toolchain compilation" if [ `md5sum $PACKAGE | awk '{print $1}'` == `cat $PACKAGENAME.md5 | awk '{print $1}'` ]; then - tar axf $PACKAGE + zstd -d < "${PACKAGE}" | tar x prepareenv else exiterror "$PACKAGENAME md5 did not match, check downloaded package"