summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLUtils.pm
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2018-05-20 06:46:02 +0000
committerNorbert Preining <preining@logic.at>2018-05-20 06:46:02 +0000
commitcd36ca99eb89acf487d8f5ea6580e6f504b54afb (patch)
tree3fb5d9faf8e917cf9b08da26dff6865b43e4b811 /Master/tlpkg/TeXLive/TLUtils.pm
parent0075dc597919274132d3778c71599bde3299ef20 (diff)
remove debug statements
git-svn-id: svn://tug.org/texlive/trunk@47777 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLUtils.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm2
1 files changed, 0 insertions, 2 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index 641c1986379..d72e3bb82c0 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -2488,7 +2488,6 @@ Setup compression method for containers.
# TODO TODO needs improvement, check also whether compressor prog is available!!!
sub setup_compressor {
- print "DEBUG: entering select compressor\n";
my $compressor = "xz";
if ($ENV{'TEXLIVE_COMPRESSOR'}) {
if (TeXLive::TLUtils::member($ENV{'TEXLIVE_COMPRESSOR'}, @TeXLive::TLConfig::AcceptedCompressors)) {
@@ -2498,7 +2497,6 @@ sub setup_compressor {
}
}
my $compressorextension = $TeXLive::TLConfig::CompressorExtension{$compressor};
- print "DEBUG: selected compressor $compressor\n";
return ($compressor, $compressorextension);
}