summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2018-05-23 02:32:50 +0000
committerNorbert Preining <preining@logic.at>2018-05-23 02:32:50 +0000
commitcd5f61b188f3160d3d2020f418410ed72e58a566 (patch)
treed2265ab88fbacdca379b6509c27bddc2298ce3db /Master/tlpkg/TeXLive
parent1bc9a0565e5c03222bdeeb5a9aeaacdc90531d80 (diff)
get rid of all traces of xzdec
git-svn-id: svn://tug.org/texlive/trunk@47804 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive')
-rw-r--r--Master/tlpkg/TeXLive/TLPDB.pm2
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm4
2 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/TeXLive/TLPDB.pm b/Master/tlpkg/TeXLive/TLPDB.pm
index d2cd1edefda..aeeae5577d3 100644
--- a/Master/tlpkg/TeXLive/TLPDB.pm
+++ b/Master/tlpkg/TeXLive/TLPDB.pm
@@ -339,7 +339,7 @@ sub from_file {
if ($ret && (-r "$xzfile")) {
# ok, let the fun begin
debug("decompressing $xzfile to $tlpdbfile\n");
- # xzdec *hopefully* returns 0 on success and anything else on failure
+ # xz *hopefully* returns 0 on success and anything else on failure
# we don't have to negate since not zero means error in the shell
# and thus in perl true
if (system("$decompressor @decompressorArgs <$xzfile_quote >$tlpdbfile_quote")) {
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index d2492f15b60..33d10629d28 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -2314,8 +2314,8 @@ sub read_file_ignore_cr {
=item C<setup_programs($bindir, $platform)>
Populate the global C<$::progs> hash containing the paths to the
-programs C<wget>, C<tar>, C<xzdec>. The C<$bindir> argument specifies
-the path to the location of the C<xzdec> binaries, the C<$platform>
+programs C<wget>, C<tar>, C<xz>. The C<$bindir> argument specifies
+the path to the location of the C<xz> binaries, the C<$platform>
gives the TeX Live platform name, used as the extension on our
executables. If a program is not present in the TeX Live tree, we also
check along PATH (without the platform extension.)