mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-06-15 22:08:16 +00:00
Record tarball formats
Also, missed upgrades of gmp, isl, mingw-w64 Signed-off-by: Alexey Neyman <stilor@att.net>
This commit is contained in:
@ -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}
|
||||
;;
|
||||
|
Reference in New Issue
Block a user