Fixes for Mac OSX compatibility.

This commit is contained in:
JT Smith 2002-11-29 19:08:40 +00:00
parent c15b7c32ec
commit 341b2ada4e
3 changed files with 26 additions and 26 deletions

View file

@ -29,8 +29,8 @@ print "\nWebGUI is checking your system environment:\n\n";
my ($os, $prereq, $dbi, $dbDrivers);
$prereq = 1;
if ($^O =~ /Win/i) {
$os = "Microsoftish";
if ($^O =~ /^Win/i) {
$os = "Windowsish";
} else {
$os = "Linuxish";
}