summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLConfig.pm
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2018-06-05 22:35:41 +0000
committerKarl Berry <karl@freefriends.org>2018-06-05 22:35:41 +0000
commit74ed76f3faa97cee22dc1328e6c6a7ee54acf51c (patch)
tree23c448fef8a92202604f7764d395195c32b7e2b0 /Master/tlpkg/TeXLive/TLConfig.pm
parent3d89235fbd3a405daae94b73824e1027973566e8 (diff)
TLConfig.pm (AcceptedCompressors): move lz4 to end, it's writing
to stdout (sometimes?). TLPOBJ.pm (make_container): compute other compressor values after possible fallback. git-svn-id: svn://tug.org/texlive/trunk@47934 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLConfig.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLConfig.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLConfig.pm b/Master/tlpkg/TeXLive/TLConfig.pm
index c60396a3aca..0328d51d2b1 100644
--- a/Master/tlpkg/TeXLive/TLConfig.pm
+++ b/Master/tlpkg/TeXLive/TLConfig.pm
@@ -131,7 +131,7 @@ our %FallbackDownloaderArgs = (
our $DefaultCompressorFormat = "xz";
our $DefaultContainerExtension = "tar.$DefaultCompressorFormat";
# mind that the order here is important as gives also the preference!
-our @AcceptedCompressors = qw/lz4 gzip xz/;
+our @AcceptedCompressors = qw/xz gzip lz4/;
our $AcceptedCompressorsRegexp = "(xz|lz4|gzip)";
our %CompressorProgram = ( 'xz' => 'xz', 'gzip' => 'gzip', 'lz4' => 'lz4');
our %CompressorExtension = ( 'xz' => 'xz', 'gzip' => 'gz', 'lz4' => 'lz4');