diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2011-05-23 00:46:59 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2011-05-23 00:46:59 +0200 |
commit | 0b65c752cb972ec75c2a7c58c3b2f40f5ec2c6fe (patch) | |
tree | cd8618e79c09298d3f622bc20bffc02d6ddf10f8 | |
parent | f80758fce316b1cc3ac0a295251e66e432aba1e4 (diff) | |
download | bugzilla-0b65c752cb972ec75c2a7c58c3b2f40f5ec2c6fe.tar.gz bugzilla-0b65c752cb972ec75c2a7c58c3b2f40f5ec2c6fe.tar.xz |
Bug 648096: UWinnipeg (theory PPM repo) instructions are not necessary with recent ActiveState releases
r=mkanat a=LpSolit
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 1f1ef436d..5f276bf25 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -545,9 +545,8 @@ sub print_module_instructions { or ($output and $check_results->{any_missing}) ) ? 1 : 0; # We only print the PPM repository note if we have to. - if ($need_module_instructions and ON_ACTIVESTATE) { - my $perl_ver = sprintf('%vd', $^V); - + my $perl_ver = sprintf('%vd', $^V); + if ($need_module_instructions && ON_ACTIVESTATE && vers_cmp($perl_ver, '5.12') < 0) { # URL when running Perl 5.8.x. my $url_to_theory58S = 'http://theoryx5.uwinnipeg.ca/ppms'; # Packages for Perl 5.10 are not compatible with Perl 5.8. |