From d003e02e9dfccd5379068e1b6bf9fcc4bdf8a14c Mon Sep 17 00:00:00 2001 From: "jocuri%softhome.net" <> Date: Fri, 9 Apr 2004 09:18:13 +0000 Subject: Patch for bug 239885: Don't display the sendmail message if the current platform is Windows; patch by Bruce Armstrong ; r=bugreport; a=myk. --- checksetup.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'checksetup.pl') 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; +} -- cgit v1.2.3-24-g4f1b