summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLConfig.pm
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2018-05-23 02:32:29 +0000
committerNorbert Preining <preining@logic.at>2018-05-23 02:32:29 +0000
commitcc2f0463e08cdfb7e55b1b57b1c9b55c7af010b3 (patch)
tree35dcedbe2f8a135edae293dbb4746da64f04aaf0 /Master/tlpkg/TeXLive/TLConfig.pm
parent192a295280da343cff8dd0fb7f89a843d96c8368 (diff)
rename DefaultContainerFormat to DefaultCompressorFormat
git-svn-id: svn://tug.org/texlive/trunk@47802 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLConfig.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLConfig.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/tlpkg/TeXLive/TLConfig.pm b/Master/tlpkg/TeXLive/TLConfig.pm
index ab57a2b66ac..c697418f103 100644
--- a/Master/tlpkg/TeXLive/TLConfig.pm
+++ b/Master/tlpkg/TeXLive/TLConfig.pm
@@ -22,7 +22,7 @@ BEGIN {
$MetaCategoriesRegexp
$CategoriesRegexp
$DefaultCategory
- $DefaultContainerFormat
+ $DefaultCompressorFormat
$DefaultContainerExtension
@AcceptedCompressors
$AcceptedCompressorsRegexp
@@ -111,8 +111,8 @@ if ($^O =~ /^MSWin/i) {
}
# the way we package things on the web
-our $DefaultContainerFormat = "xz";
-our $DefaultContainerExtension = "tar.$DefaultContainerFormat";
+our $DefaultCompressorFormat = "xz";
+our $DefaultContainerExtension = "tar.$DefaultCompressorFormat";
our @AcceptedCompressors = qw/xz lz4 gzip/;
our $AcceptedCompressorsRegexp = "(xz|lz4|gzip)";
our %CompressorProgram = ( 'xz' => 'xz', 'gzip' => 'gzip', 'lz4' => 'lz4');
@@ -128,7 +128,7 @@ our %DecompressorArgs = ( 'xz' => ['-dcf'], 'gzip' => ['-dcf'], 'lz4' => ['-d
our %TLPDBConfigs = (
"container_split_src_files" => 1,
"container_split_doc_files" => 1,
- "container_format" => $DefaultContainerFormat,
+ "container_format" => $DefaultCompressorFormat,
"minrelease" => $MinRelease,
"release" => $ReleaseYear,
"frozen" => 0,