diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-07-10 14:43:13 +0000 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-07-10 14:43:13 +0000 |
commit | 2b04eabbe53eb1c3da4870ce0d5988b6b3061c6b (patch) | |
tree | 97aac60ae83df8872b180b2be7e7afe17e6a9007 /Master/texmf | |
parent | 1d32a494f0806f0143d17b14b165c9378e0d72c8 (diff) |
Patch to binary dependencies display by Nikola Lecic.
git-svn-id: svn://tug.org/texlive/trunk@19342 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf')
-rw-r--r-- | Master/texmf/scripts/texlive/tlmgrgui.pl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui.pl index 579d7811f8e..301001ed394 100644 --- a/Master/texmf/scripts/texlive/tlmgrgui.pl +++ b/Master/texmf/scripts/texlive/tlmgrgui.pl @@ -704,8 +704,7 @@ sub show_extended_info { if ($do_arch) { my @archs = $localtlpdb->available_architectures; @arch_deps = map { "$p.$_"; } @archs; - push @{$further_a{$p}}, $tf->Label(-text => __("Binaries' dependencies:")); - push @{$further_b{$p}}, $tf->Label(-text => join('\n',@arch_deps)); + add_filelist_text($p, __("Binaries' dependencies:"), @arch_deps); } add_filelist_text($p, __("Runfiles:"), $tlp->runfiles); add_filelist_text($p, __("Docfiles:"), $tlp->docfiles); |