From cec532b4cc501ee5b97c64d7f042bbcdc58283bf Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 11 Jul 2021 14:12:15 +0100 Subject: [PATCH] make.sh: Explicitely call zstd to extract toolchain MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.39.5