From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] make.sh: Explicitely call zstd to extract toolchain Date: Sun, 11 Jul 2021 14:12:15 +0100 Message-ID: <20210711131215.4142-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5078238406581062440==" List-Id: --===============5078238406581062440== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Some older versions of tar do not recognise Zstandard, yet. Signed-off-by: Michael Tremer --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.sh b/make.sh index 7bdeeaf62..13a48f461 100755 --- a/make.sh +++ b/make.sh @@ -1735,7 +1735,7 @@ build) PACKAGENAME=3D${PACKAGE%.tar.zst} print_build_stage "Packaged toolchain compilation" if [ `md5sum $PACKAGE | awk '{print $1}'` =3D=3D `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" --=20 2.26.2 --===============5078238406581062440==--