diff options
author | Piotr Strzelczyk <piotr@eps.gda.pl> | 2009-06-27 13:55:12 +0000 |
---|---|---|
committer | Piotr Strzelczyk <piotr@eps.gda.pl> | 2009-06-27 13:55:12 +0000 |
commit | 5099e72c5ce162ae0047729fd973490961b70d07 (patch) | |
tree | 75bc7c57471e6417fc351dbf107fd72b63b5795e /Master/texmf | |
parent | f959747e2ad9f90a679ad26c58085af7cb078d4b (diff) |
fix postaction remove that broke uninstaller
git-svn-id: svn://tug.org/texlive/trunk@13977 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf')
-rw-r--r-- | Master/texmf/scripts/texlive/uninstall-win32.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Master/texmf/scripts/texlive/uninstall-win32.pl b/Master/texmf/scripts/texlive/uninstall-win32.pl index 1c203f408cd..ed810a0157e 100644 --- a/Master/texmf/scripts/texlive/uninstall-win32.pl +++ b/Master/texmf/scripts/texlive/uninstall-win32.pl @@ -50,7 +50,10 @@ sub doit { tlwarn("Cannot load the TLPDB from $Master, are you sure there is an installation?\n"); } else { for my $pkg ($localtlpdb->list_packages) { - &TeXLive::TLUtils::do_postaction("remove", $pkg); + &TeXLive::TLUtils::do_postaction("remove", $localtlpdb->get_package($pkg), + $localtlpdb->option_file_assocs, + $localtlpdb->option_desktop_integration, + $localtlpdb->option_post_code); } } my $menupath = &TeXLive::TLWinGoo::menu_path(); |