summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgr.pl2
-rw-r--r--Master/tlpkg/TeXLive/TLMedia.pm4
2 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl
index 1b00f97bd7b..5e8bed07635 100755
--- a/Master/texmf/scripts/texlive/tlmgr.pl
+++ b/Master/texmf/scripts/texlive/tlmgr.pl
@@ -652,7 +652,7 @@ sub action_update {
next if ($pkg =~ m/^00texlive/);
my $tlp = $localtlpdb->get_package($pkg);
if (!defined($tlp)) {
- printf STDERR "Strange, $pkg cannot be found!\n";
+ printf STDERR "$0: cannot find package $pkg\n";
next;
}
my $rev = $tlp->revision;
diff --git a/Master/tlpkg/TeXLive/TLMedia.pm b/Master/tlpkg/TeXLive/TLMedia.pm
index 3af15d553c1..704051502db 100644
--- a/Master/tlpkg/TeXLive/TLMedia.pm
+++ b/Master/tlpkg/TeXLive/TLMedia.pm
@@ -98,11 +98,11 @@ sub install_package {
debug("installed $pkg from fallback");
return $ret;
} else {
- tlwarn("couldn't find $pkg");
+ tlwarn("$0: cannot find package $pkg (in fallback, either)\n");
return 0;
}
} else {
- tlwarn("couldn't find $pkg");
+ tlwarn("$0: cannot find package $pkg\n");
return 0;
}
} else {