summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-09-11 18:21:20 +0000
committerKarl Berry <karl@freefriends.org>2008-09-11 18:21:20 +0000
commit90322b931092ff882d9a9d4398fdf0d9bb9d32e4 (patch)
treec2471aece53270cb001f87addf3b8715dc368603 /Master
parent48782ce351a397be3aaeaaa1d69dbb5aa1888109 (diff)
(action_update): do not bother user with "forcibly
removed", I guess. git-svn-id: svn://tug.org/texlive/trunk@10554 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgr.pl7
1 files changed, 4 insertions, 3 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl
index 6a29a46133c..82923739824 100755
--- a/Master/texmf/scripts/texlive/tlmgr.pl
+++ b/Master/texmf/scripts/texlive/tlmgr.pl
@@ -634,9 +634,10 @@ sub action_update {
for my $d ($tlc->depends) {
my $tlp = $localtlpdb->get_package($d);
if (!defined($tlp)) {
- # there is a dep that is either new or has been forcibly removed
- # report it as new/forcibly removed
- info("package $d ($c) is new (or has been forcibly removed)\n");
+ # there is a dep that is either new or has been forcibly
+ # removed by the user. report it as new, if the user does
+ # forcible removals it is their own problem.
+ info("package $d ($c) is new\n");
}
}
}