Reverting Janet's cygdrive change which she says breaks other Win32 builds.

Until Cygwin's version of Make gets fixed, use the mingw Make instead.
This commit is contained in:
Andrew Johnson
2006-11-21 22:52:41 +00:00
parent deeda7b04f
commit 1e72aa61f0
2 changed files with 6 additions and 2 deletions

View File

@@ -337,7 +337,9 @@ sub UnixPath {
sub LocalPath {
my ($newpath) = @_;
if ($^O eq "darwin") {
if ($^O eq "cygwin") {
$newpath =~ s{^/cygdrive/([a-zA-Z])/}{$1:/};
} elsif ($^O eq "darwin") {
# These rules are likely to be site-specific
$newpath =~ s{^/private/var/auto\.home/}{/home/}; # APS
}

View File

@@ -494,7 +494,9 @@ sub UnixPath {
sub LocalPath {
my ($newpath) = @_;
if ($^O eq "darwin") {
if ($^O eq "cygwin") {
$newpath =~ s{^/cygdrive/([a-zA-Z])/}{$1:/};
} elsif ($^O eq "darwin") {
# These rules are likely to be site-specific
$newpath =~ s{^/private/var/auto\.home/}{/home/}; # APS
}