From 5390c9097902ff5420848efb72edcb2cbf81ca04 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 4 Jun 2007 22:41:30 +0000 Subject: (search_windows_font) try different cases on windows partitions (based on ffixxx suggestion, #28016) --- perl-install/NEWS | 1 + perl-install/standalone/drakfont | 7 +++++-- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index a189efb36..c2a12d22d 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -7,6 +7,7 @@ o when formatting ntfs don't zero partition (#30928) - drakfont: o do see fuse-mounted or ntfs-3g windows partitions (ffixxx, #28016) + o try different cases on windows partitions (based on ffixxx suggestion, #28016) - drakhelp: o fix .mozilla dir as root when it doesn't exists (#29775) - draksec: diff --git a/perl-install/standalone/drakfont b/perl-install/standalone/drakfont index 177070d07..d1277f71d 100755 --- a/perl-install/standalone/drakfont +++ b/perl-install/standalone/drakfont @@ -201,10 +201,11 @@ sub search_installed_fonts_full_path() { sub search_windows_font() { foreach my $fstab_line (grep { /vfat|smbfs|ntfs|fuse/ } cat_('/etc/mtab')) { my $win_dir = (split('\s', $fstab_line))[1]; - my @list_fonts_win = all("$win_dir/windows/fonts"); + my @list_fonts_win = all("$win_dir/windows/fonts"), all("$win_dir/WINDOWS/Fonts"); my @list_fonts_winnt = all("$win_dir/winnt/fonts"); my $nb_dir = @list_fonts_win + @list_fonts_winnt; foreach ([ \@list_fonts_win, "windows" ], + [ \@list_fonts_win, "WINDOWS" ], [ \@list_fonts_winnt, "winnt" ]) { foreach my $i (@{ $_->[0] }) { if ($interactive) { @@ -216,7 +217,9 @@ sub search_windows_font() { } } !$replace && any { /$i/ } @installed_fonts and next; - any { /$i$/ } @font_list or push @font_list, "$win_dir/$_->[1]/fonts/$i"; + any { /$i$/ } @font_list or push @font_list, + find { -e $_ } map { "$win_dir/$_->[1]/fonts/$_", + "$win_dir/$_->[1]/Fonts/$_" } $i; } } $interactive && $nb_dir and progress($pbar, 1, N("done")); -- cgit v1.2.1