summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
+}