diff options
-rw-r--r-- | Master/texmf/scripts/texlive/tlmgrgui.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui.pl index f245721cc61..1f28bd9fbe7 100644 --- a/Master/texmf/scripts/texlive/tlmgrgui.pl +++ b/Master/texmf/scripts/texlive/tlmgrgui.pl @@ -1399,7 +1399,7 @@ sub do_gui_language_setting { my $opt = $sw->BrowseEntry(-label => __("Default language for GUI:"), -variable => \$var); $opt->insert(0, __("System default")); my @ll; - foreach my $p (<$Master/tlpkg/translations/*.po>) { + foreach my $p (<"$Master/tlpkg/translations/*.po">) { $p =~ s!^.*translations/!!; $p =~ s!\.po$!!; push @ll, $p; |