From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: Re: [PATCH] make.sh: Explicitely call zstd to extract toolchain Date: Mon, 12 Jul 2021 19:28:00 +0200 Message-ID: In-Reply-To: <20210711131215.4142-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5607416835979424467==" List-Id: --===============5607416835979424467== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Thank you very much. :-) Tested-by: Peter M=C3=BCller > Some older versions of tar do not recognise Zstandard, yet. >=20 > Signed-off-by: Michael Tremer > --- > make.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > 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 --===============5607416835979424467==--