diff options
-rw-r--r-- | Bugzilla/Install/CPAN.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Install/CPAN.pm b/Bugzilla/Install/CPAN.pm index 01eceafeb..b37e6d40d 100644 --- a/Bugzilla/Install/CPAN.pm +++ b/Bugzilla/Install/CPAN.pm @@ -29,6 +29,7 @@ use Bugzilla::Install::Util qw(bin_loc install_string); use CPAN; use Cwd qw(abs_path); use File::Path qw(rmtree); +use List::Util qw(shuffle); # We need the absolute path of ext_libpath, because CPAN chdirs around # and so we can't use a relative directory. @@ -62,7 +63,7 @@ use constant CPAN_DEFAULTS => { unzip => bin_loc('unzip'), wget => bin_loc('wget'), - urllist => [qw( + urllist => [shuffle qw( http://cpan.pair.com/ http://mirror.hiwaay.net/CPAN/ ftp://ftp.dc.aleron.net/pub/CPAN/ |