diff options
author | Norbert Preining <preining@logic.at> | 2008-12-26 20:22:38 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-12-26 20:22:38 +0000 |
commit | ba819cc6b39bac0b59f53967b5eea43977d38bda (patch) | |
tree | 2b8bc5fedce539a7ed88773d24ca3af4d81ed5bf /Master/texmf/scripts | |
parent | afdd53f7d2908c4265cf5b404ad5184213b6df43 (diff) |
fix removal missing $Master
git-svn-id: svn://tug.org/texlive/trunk@11726 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf/scripts')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr2.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr2.pl b/Master/texmf/scripts/texlive/tlmgr2.pl index f68e23044bf..db71b23f3c1 100755 --- a/Master/texmf/scripts/texlive/tlmgr2.pl +++ b/Master/texmf/scripts/texlive/tlmgr2.pl @@ -2246,7 +2246,7 @@ sub action_uninstall { system("rm", "-rf", "$Master/readme-txt.dir"); for my $f (qw/doc.html index.html LICENSE.CTAN LICENSE.TL README README.usergroups release-texlive.txt texmf.cnf/) { - system("rm", "-f", $f); + system("rm", "-f", "$Master/$f"); } if (-d "$Master/temp") { system("rmdir", "--ignore-fail-on-non-empty", "$Master/temp"); |