diff options
author | Norbert Preining <preining@logic.at> | 2008-06-16 05:04:34 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-06-16 05:04:34 +0000 |
commit | 0b02590dc43da680ca16fd460172af8318762b23 (patch) | |
tree | aaf29eaf9d87e5d0d683bb860714cc0ae5010412 | |
parent | dc2b63620015fc8b6c296cebf46466e53a98e4e0 (diff) |
tlmgr: do not remove texlive.infra.win32 ... it will break update
git-svn-id: svn://tug.org/texlive/trunk@8772 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index d0f648c0685..9da41157303 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -217,8 +217,8 @@ sub remove_package { return; } } - if ($pkg eq "texlive.infra") { - log("Not removing texlive.infra, it is essential!\n"); + if ($pkg =~ m/^texlive\.infra/) { + log("Not removing $pkg, it is essential!\n"); return; } print "remove: $pkg\n"; |