From db3407a3abbb4e0c936a8c9d0685d50bb06ac2f7 Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Mon, 20 Nov 2006 16:22:23 +0000 Subject: [PATCH] Cygwin Make 3.81 now requires /cygdrive//... in fullpath names. --- src/makeBaseApp/makeBaseApp.pl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/makeBaseApp/makeBaseApp.pl b/src/makeBaseApp/makeBaseApp.pl index d6f69a3fb..da8352eb6 100755 --- a/src/makeBaseApp/makeBaseApp.pl +++ b/src/makeBaseApp/makeBaseApp.pl @@ -494,9 +494,7 @@ sub UnixPath { sub LocalPath { my ($newpath) = @_; - if ($^O eq "cygwin") { - $newpath =~ s{^/cygdrive/([a-zA-Z])/}{$1:/}; - } elsif ($^O eq "darwin") { + if ($^O eq "darwin") { # These rules are likely to be site-specific $newpath =~ s{^/private/var/auto\.home/}{/home/}; # APS }