summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLPDB.pm
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-02-20 17:13:02 +0000
committerKarl Berry <karl@freefriends.org>2023-02-20 17:13:02 +0000
commitc99fb3e37b306124a99d6bdecfda8a0b50aa3999 (patch)
treece0df60ef7ba1e5759e1b82690a10cdb998e2b6b /Master/tlpkg/TeXLive/TLPDB.pm
parent77591ea400621f30521343ef41ed1201cff37fdd (diff)
(platform): disable debugging
git-svn-id: svn://tug.org/texlive/trunk@65964 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLPDB.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLPDB.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/TeXLive/TLPDB.pm b/Master/tlpkg/TeXLive/TLPDB.pm
index c68d9a9452d..1c02039e4ab 100644
--- a/Master/tlpkg/TeXLive/TLPDB.pm
+++ b/Master/tlpkg/TeXLive/TLPDB.pm
@@ -1,6 +1,6 @@
# $Id$
# TeXLive::TLPDB.pm - tlpdb plain text database files.
-# Copyright 2007-2021 Norbert Preining
+# Copyright 2007-2023 Norbert Preining
# This file is licensed under the GNU General Public License version 2
# or any later version.
@@ -1187,10 +1187,10 @@ sub platform {
# try to deduce the platform
my $self = shift;
my $ret = $self->setting("platform");
- print STDERR "platform $ret set in tlpdb\n" if defined $ret;
+ #print STDERR "platform $ret set in tlpdb\n" if defined $ret;
return $ret if defined $ret;
# the platform setting wasn't found in the tlpdb, try TLUtils::platform
- print STDERR "Setting platform to ",TeXLive::TLUtils::platform(), "\n";
+ #print STDERR "Setting platform to ",TeXLive::TLUtils::platform(), "\n";
return TeXLive::TLUtils::platform();
}