summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-04-09 11:18:13 +0200
committerjocuri%softhome.net <>2004-04-09 11:18:13 +0200
commitd003e02e9dfccd5379068e1b6bf9fcc4bdf8a14c (patch)
tree716fb814883b302f7c03c82ca650c1e26c0ddd41 /checksetup.pl
parentb1b9352fb358d2ce2d61bc1c7836c27964e105ec (diff)
downloadbugzilla-d003e02e9dfccd5379068e1b6bf9fcc4bdf8a14c.tar.gz
bugzilla-d003e02e9dfccd5379068e1b6bf9fcc4bdf8a14c.tar.xz
Patch for bug 239885: Don't display the sendmail message if the current platform is Windows; patch by Bruce Armstrong <bruce.armstrong@teamsybase.com>; r=bugreport; a=myk.
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 4efbc2cf4..47569b713 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -4281,5 +4281,7 @@ $dbh->do("UPDATE components SET initialowner = $adminuid WHERE initialowner = 0"
unlink "$datadir/versioncache";
-print "Reminder: Bugzilla now requires version 8.7 or later of sendmail.\n" unless $silent;
+if ($^O !~ /MSWin32/i) {
+ print "Reminder: Bugzilla now requires version 8.7 or later of sendmail.\n" unless $silent;
+}