diff options
author | Karl Berry <karl@freefriends.org> | 2008-09-11 18:21:20 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-09-11 18:21:20 +0000 |
commit | 90322b931092ff882d9a9d4398fdf0d9bb9d32e4 (patch) | |
tree | c2471aece53270cb001f87addf3b8715dc368603 /Master/texmf/scripts | |
parent | 48782ce351a397be3aaeaaa1d69dbb5aa1888109 (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/texmf/scripts')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 7 |
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"); } } } |