summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install/Requirements.pm
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-04-20 01:21:58 +0200
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-04-20 01:21:58 +0200
commit049ae4ae5d0367485910064f62b1baf38fdaad04 (patch)
tree1be645e4d0d5fdf6b1bb81aea55f07cabea0e361 /Bugzilla/Install/Requirements.pm
parent3944a53b67f20592b960f03c65d9ff2b490f58fb (diff)
downloadbugzilla-049ae4ae5d0367485910064f62b1baf38fdaad04.tar.gz
bugzilla-049ae4ae5d0367485910064f62b1baf38fdaad04.tar.xz
Bug 560284: Make all errors that checksetup.pl throws be red
r=mkanat, a=mkanat (module owner)
Diffstat (limited to 'Bugzilla/Install/Requirements.pm')
-rw-r--r--Bugzilla/Install/Requirements.pm14
1 files changed, 9 insertions, 5 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm
index 34e93b675..b80d7fa8b 100644
--- a/Bugzilla/Install/Requirements.pm
+++ b/Bugzilla/Install/Requirements.pm
@@ -425,8 +425,11 @@ sub print_module_instructions {
if (vers_cmp($perl_ver, '5.10') > -1) {
$url_to_theory58S = 'http://cpan.uwinnipeg.ca/PPMPackages/10xx/';
}
- print colored(install_string('ppm_repo_add',
- { theory_url => $url_to_theory58S }), 'red');
+ print colored(
+ install_string('ppm_repo_add',
+ { theory_url => $url_to_theory58S }),
+ COLOR_ERROR);
+
# ActivePerls older than revision 819 require an additional command.
if (ON_ACTIVESTATE < 819) {
print install_string('ppm_repo_up');
@@ -459,7 +462,7 @@ sub print_module_instructions {
}
if (my @missing = @{$check_results->{missing}}) {
- print colored(install_string('commands_required'), 'red') . "\n";
+ print colored(install_string('commands_required'), COLOR_ERROR), "\n";
foreach my $package (@missing) {
my $command = install_command($package);
print " $command\n";
@@ -472,7 +475,8 @@ sub print_module_instructions {
print install_string('install_all', { perl => $^X });
}
if (!$check_results->{pass}) {
- print colored(install_string('installation_failed'), 'red') . "\n\n";
+ print colored(install_string('installation_failed'), COLOR_ERROR),
+ "\n\n";
}
}
@@ -565,7 +569,7 @@ sub have_vers {
$ok = "$ok:" if $ok;
my $str = sprintf "%s %19s %-9s $ok $vstr $black_string\n",
install_string('checking_for'), $package, "($want_string)";
- print $vok ? $str : colored($str, 'red');
+ print $vok ? $str : colored($str, COLOR_ERROR);
}
return $vok ? 1 : 0;