summaryrefslogtreecommitdiffstats
path: root/metrics.pl
diff options
context:
space:
mode:
Diffstat (limited to 'metrics.pl')
-rwxr-xr-xmetrics.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/metrics.pl b/metrics.pl
index c48629c45..afcd7d22d 100755
--- a/metrics.pl
+++ b/metrics.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -7,6 +7,7 @@
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
+use 5.10.1;
use strict;
use warnings;
@@ -14,9 +15,8 @@ BEGIN {
delete $ENV{SERVER_SOFTWARE};
}
-use FindBin qw($Bin);
-use lib $Bin;
-use lib "$Bin/lib";
+use FindBin qw($RealBin);
+use lib ("$RealBin/.", "$RealBin/lib", "$RealBin/local/lib/perl5");
use Bugzilla;
use Bugzilla::Constants;