public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] make.sh: Explicitely call zstd to extract toolchain
@ 2021-07-11 13:12 Michael Tremer
  2021-07-12 17:28 ` Peter Müller
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Tremer @ 2021-07-11 13:12 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 693 bytes --]

Some older versions of tar do not recognise Zstandard, yet.

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 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=${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.26.2


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-07-12 17:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-11 13:12 [PATCH] make.sh: Explicitely call zstd to extract toolchain Michael Tremer
2021-07-12 17:28 ` Peter Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox