summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLTREE.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/TeXLive/TLTREE.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLTREE.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/Master/tlpkg/TeXLive/TLTREE.pm b/Master/tlpkg/TeXLive/TLTREE.pm
index 9e009616b54..e32b3a91e13 100644
--- a/Master/tlpkg/TeXLive/TLTREE.pm
+++ b/Master/tlpkg/TeXLive/TLTREE.pm
@@ -76,7 +76,7 @@ sub _initialize_lines {
add_path_to_tree($self->{'_dirtree'}, split("[/\\\\]", $dn));
push @{$self->{'_filesofdir'}{$dn}}, $fn;
} else {
- warn("Ignoring svn status output line:\n $l\n");
+ tlwarn("Ignoring svn status output line:\n $l\n");
#die("Cannot read svn status output line:\n $l\n");
}
}
@@ -220,7 +220,7 @@ sub _get_matching_files {
} else {
die "Unknown pattern $p";
}
- tllog($::LOG_DDDEBUG, "p=$p; matchfiles=@matchfiles\n");
+ ddebug("p=$p; matchfiles=@matchfiles\n");
return @matchfiles;
}
@@ -246,9 +246,9 @@ sub _get_files_matching_glob_pattern {
return unless (defined($self->{'_filesofdir'}{$dirpart}));
my @candfiles = @{$self->{'_filesofdir'}{$dirpart}};
foreach my $f (@candfiles) {
- tllog($::LOG_DDDEBUG, "matching $f in $dirpart via glob $globline\n");
+ ddebug("matching $f in $dirpart via glob $globline\n");
if ($f =~ /^$basepart$/) {
- tllog($::LOG_DDDEBUG, "hit: globline=$globline, $dirpart/$f\n");
+ ddebug("hit: globline=$globline, $dirpart/$f\n");
if ("$dirpart" eq ".") {
push @returnfiles, "$f";
} else {
@@ -259,9 +259,9 @@ sub _get_files_matching_glob_pattern {
if ($dirpart =~ m@^bin/win32@) {
# for arch=win32 under bin we also want to match .dll, .bat, .exe files
foreach my $f (@candfiles) {
- tllog($::LOG_DDDEBUG, "matching $f in $dirpart via glob $globline.{bat/exe/texlua}\n");
+ ddebug("matching $f in $dirpart via glob $globline.{bat/exe/texlua}\n");
if ($f =~ /^$basepart\.(bat|exe|dll|texlua)$/) {
- tllog($::LOG_DDDEBUG, "hit: globline=$globline, $dirpart/$f\n");
+ ddebug("hit: globline=$globline, $dirpart/$f\n");
if ("$dirpart" eq ".") {
push @returnfiles, "$f";
} else {