summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install/Requirements.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Install/Requirements.pm')
-rw-r--r--Bugzilla/Install/Requirements.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm
index d9fdc0f9e..19797b7b8 100644
--- a/Bugzilla/Install/Requirements.pm
+++ b/Bugzilla/Install/Requirements.pm
@@ -744,7 +744,7 @@ sub check_font_file {
$readable = 1 if -r $font_file;
my $ttf;
- $ttf = 1 if $font_file =~ /\.ttf$/;
+ $ttf = 1 if $font_file =~ /\.(ttf|otf)$/;
if ($output) {
_checking_for({ package => 'Font file', ok => $readable && $ttf});