summaryrefslogtreecommitdiff
path: root/Master/tlpkg/installer/install-menu-perltk.pl
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2014-11-14 00:18:08 +0000
committerNorbert Preining <preining@logic.at>2014-11-14 00:18:08 +0000
commit23626b7057ce159c158784d3159e09385ca8c2ab (patch)
tree37d35903c0f7b8ce592d01a730fe42ae46f0c737 /Master/tlpkg/installer/install-menu-perltk.pl
parent3e547f01cff20101db9b8b4b211fcf7adfe7191f (diff)
present platforms in OS on ARCH order
git-svn-id: svn://tug.org/texlive/trunk@35578 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/installer/install-menu-perltk.pl')
-rw-r--r--Master/tlpkg/installer/install-menu-perltk.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/installer/install-menu-perltk.pl b/Master/tlpkg/installer/install-menu-perltk.pl
index bf82453da32..50efab9ba22 100644
--- a/Master/tlpkg/installer/install-menu-perltk.pl
+++ b/Master/tlpkg/installer/install-menu-perltk.pl
@@ -950,7 +950,7 @@ sub menu_select_binsystems {
$sw->Label(-text => __("Select arch-os"))->pack(-padx => "2m", -pady => "2m");
$f2 = $sw->Frame;
my $f2l = $f2->Frame;
- foreach my $sys (sort @diskarchs) {
+ foreach my $sys (sort TeXLive::TLUtils::sort_archs @diskarchs) {
$f2l->Checkbutton(-variable => \$vars{"binary_$sys"},
-command => sub { check_on_removal($sw, $sys); },
-text => platform_desc($sys))->pack(-anchor => 'w');