summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Constants.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2016-03-25 22:30:54 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2016-03-25 22:30:54 +0100
commitab88cc202fcfd78088338c378d2f02515838331e (patch)
tree6b4c819d53f93c1b9d67da78c0612fb9c0130d3c /Bugzilla/Constants.pm
parent3368986490028be41351d4329fb4976df2eb75e1 (diff)
downloadbugzilla-ab88cc202fcfd78088338c378d2f02515838331e.tar.gz
bugzilla-ab88cc202fcfd78088338c378d2f02515838331e.tar.xz
Bug 1257224: Windows-specific modules are missing in Makefile.PL
r=dylan
Diffstat (limited to 'Bugzilla/Constants.pm')
-rw-r--r--Bugzilla/Constants.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm
index 6e8a469c5..80bf255df 100644
--- a/Bugzilla/Constants.pm
+++ b/Bugzilla/Constants.pm
@@ -524,7 +524,7 @@ use constant DB_MODULE => {
};
# True if we're on Win32.
-use constant ON_WINDOWS => ($^O =~ /MSWin32/i) ? 1 : 0;
+use constant ON_WINDOWS => $^O eq 'MSWin32' ? 1 : 0;
# True if we're using ActiveState Perl (as opposed to Strawberry) on Windows.
use constant ON_ACTIVESTATE => eval { &Win32::BuildNumber };