summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgr.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl
index e12f4807afc..b6908ec3758 100755
--- a/Master/texmf/scripts/texlive/tlmgr.pl
+++ b/Master/texmf/scripts/texlive/tlmgr.pl
@@ -1611,7 +1611,11 @@ sub action_update {
if ($::machinereadable) {
machine_line($pkg, $FLAG_AUTOINSTALL, "-", $mediatlp->revision, $sizes{$pkg});
} else {
- info("[$currnr/$totalnr] auto-install: $pkg\n");
+ if ($opts{"list"}) {
+ info("$pkg: local: <absent>, source: " . $mediatlp->revision . " (auto-install)\n");
+ } else {
+ info("[$currnr/$totalnr] auto-install: $pkg\n");
+ }
}
$currnr++;
next if ($opts{"dry-run"} || $opts{"list"});