From: jocuri%softhome.net <> Date: Fri, 9 Apr 2004 09:18:13 +0000 (+0000) Subject: Patch for bug 239885: Don't display the sendmail message if the current platform... X-Git-Tag: bugzilla-2.18rc1~105 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d003e02e9dfccd5379068e1b6bf9fcc4bdf8a14c;p=thirdparty%2Fbugzilla.git Patch for bug 239885: Don't display the sendmail message if the current platform is Windows; patch by Bruce Armstrong ; r=bugreport; a=myk. --- diff --git a/checksetup.pl b/checksetup.pl index 4efbc2cf45..47569b713e 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; +}