diff options
author | jocuri%softhome.net <> | 2004-04-09 11:18:13 +0200 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-04-09 11:18:13 +0200 |
commit | d003e02e9dfccd5379068e1b6bf9fcc4bdf8a14c (patch) | |
tree | 716fb814883b302f7c03c82ca650c1e26c0ddd41 | |
parent | b1b9352fb358d2ce2d61bc1c7836c27964e105ec (diff) | |
download | bugzilla-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.
-rwxr-xr-x | checksetup.pl | 4 |
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; +} |