summaryrefslogtreecommitdiffstats
path: root/perl-install/keyboard.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/keyboard.pm')
-rw-r--r--perl-install/keyboard.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/keyboard.pm b/perl-install/keyboard.pm
index 86aba5e8d..9462e03a1 100644
--- a/perl-install/keyboard.pm
+++ b/perl-install/keyboard.pm
@@ -185,16 +185,16 @@ sub loadkeys_files {
my (@l, %l);
foreach (values %keyboards) {
local $_ = $trans{$_->[1]} || $_->[1];
- my ($l) = glob("$p/$_$post");
- $l or /(..)/ and ($l) = glob("$p/$1$post");
+ my ($l) = glob_("$p/$_$post");
+ $l or /(..)/ and ($l) = glob_("$p/$1$post");
print STDERR "unknown $_\n" if $_[0] && !$l; $l or next;
push @l, $l;
foreach (`zgrep include $l | grep "^include"`) {
/include\s+"(.*)"/ or die "bad line $_";
- @l{glob("$p/$1.inc.gz")} = ();
+ @l{glob_("$p/$1.inc.gz")} = ();
}
}
- @l, keys %l, map { glob("$p/$_.inc.gz") } qw(compose euro windowkeys linux-keys-bare);
+ @l, keys %l, map { glob_("$p/$_.inc.gz") } qw(compose euro windowkeys linux-keys-bare);
}
sub lang2keyboard($) {