diff options
-rwxr-xr-x | perl-install/standalone/drakfont | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/perl-install/standalone/drakfont b/perl-install/standalone/drakfont index b38c7bfbb..b07afae31 100755 --- a/perl-install/standalone/drakfont +++ b/perl-install/standalone/drakfont @@ -233,11 +233,9 @@ sub is_a_font($) { sub search_dir_font() { foreach my $fn (@install) { my @font_list_tmp; - my $dir; if (!(-e $fn)) { print "$fn :: no such file or directory \n" } else { if (-d $fn) { - $dir = $fn; foreach my $i (all($fn)) { if (is_a_font($i)) { push @font_list_tmp, $i; |