Fixed package name for Windows (bug 4395).

This commit is contained in:
Scott Ehlert 2010-05-13 04:54:31 -05:00
parent 8852256ab6
commit fb28f4bcd0

View File

@ -40,6 +40,10 @@ if ($^O eq "darwin")
{ {
$version .= '-mac'; $version .= '-mac';
} }
elsif ($^O =~ /MSWin/)
{
$version .= '-windows';
}
else else
{ {
$version .= '-' . $^O; $version .= '-' . $^O;