From be399f1046874daa40b15cbb7d74e715ae3714e6 Mon Sep 17 00:00:00 2001 From: Alexey Neyman Date: Fri, 18 Aug 2017 22:39:26 -0700 Subject: Record tarball formats Also, missed upgrades of gmp, isl, mingw-w64 Signed-off-by: Alexey Neyman --- scripts/functions | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'scripts/functions') diff --git a/scripts/functions b/scripts/functions index ed8eb677..ba2e0627 100644 --- a/scripts/functions +++ b/scripts/functions @@ -624,6 +624,7 @@ CT_DoListTarballExt() { printf ".tar.xz\n" printf ".tar.lzma\n" + printf ".tar.lz\n" printf ".tar.bz2\n" printf ".tar.gz\n.tgz\n" printf ".tar\n" @@ -1806,6 +1807,9 @@ CT_Extract() *.tar.lzma) xz -fdc "${file}" | CT_DoExecLog FILE tar x -v -f - -C "${dir}" ${components} ;; + *.tar.lz) + lzip -fdc "${file}" | CT_DoExecLog FILE tar x -v -f - -C "${dir}" ${components} + ;; *.tar.bz2) bzip2 -dc "${file}" | CT_DoExecLog FILE tar x -v -f - -C "${dir}" ${components} ;; -- cgit v1.2.3