]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Patch for bug 239885: Don't display the sendmail message if the current platform...
authorjocuri%softhome.net <>
Fri, 9 Apr 2004 09:18:13 +0000 (09:18 +0000)
committerjocuri%softhome.net <>
Fri, 9 Apr 2004 09:18:13 +0000 (09:18 +0000)
checksetup.pl

index 4efbc2cf45df5afa3bca8161894d0c15e29ae678..47569b713eb5bcfc2da59dfe21583fb853635331 100755 (executable)
@@ -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;
+}