From c409a2f77503464603f3f68fa4627ded7a71ba98 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 17 May 2000 17:01:16 +0000 Subject: *** empty log message *** --- perl-install/keyboard.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'perl-install/keyboard.pm') 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($) { -- cgit v1.2.1