diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-01-07 17:03:40 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2013-01-07 17:03:40 +0100 |
commit | df058f2b9168fa02899a6eea63b19efc750487bf (patch) | |
tree | 3bc0b551fc3d7600bfd6664e732ac309ca4f7140 /Bugzilla/Install | |
parent | aeb35cd1a50134f8e69a7d925dca4bd54fdc3bde (diff) | |
parent | d758a8169eacbccc0a65d6fd68e49f8eb8b713be (diff) | |
download | bugzilla-df058f2b9168fa02899a6eea63b19efc750487bf.tar.gz bugzilla-df058f2b9168fa02899a6eea63b19efc750487bf.tar.xz |
merged with bugzilla/4.2
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 1e7fc97c6..39cacedb0 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -32,6 +32,13 @@ use List::Util qw(max); use Safe; use Term::ANSIColor; +# Return::Value 1.666002 pollutes the error log with warnings about this +# deprecated module. We have to set NO_CLUCK = 1 before loading Email::Send +# in have_vers() to disable these warnings. +BEGIN { + $Return::Value::NO_CLUCK = 1; +} + use base qw(Exporter); our @EXPORT = qw( REQUIRED_MODULES |