diff options
author | lpsolit%gmail.com <> | 2008-08-19 06:21:44 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2008-08-19 06:21:44 +0200 |
commit | 82cadd2303b515277cf29a14d156312cddd46926 (patch) | |
tree | 0f5dde69c60128c8438d2d76d6cae0c34b3819a4 /Bugzilla | |
parent | 20d885c77680fc082640c0a7340be44cd02b2779 (diff) | |
download | bugzilla-82cadd2303b515277cf29a14d156312cddd46926.tar.gz bugzilla-82cadd2303b515277cf29a14d156312cddd46926.tar.xz |
Bug 450573: checksetup.pl gives "install-module --all" instructions on Windows - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 0f2472a5e..fd3dcf589 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -475,7 +475,7 @@ EOT } } - if ($output && $check_results->{any_missing}) { + if ($output && $check_results->{any_missing} && !ON_WINDOWS) { print install_string('install_all', { perl => $^X }); } } |