summaryrefslogtreecommitdiff
path: root/Master/tlpkg/installer/install-menu-perltk.pl
diff options
context:
space:
mode:
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');