зеркало из https://github.com/mozilla/pjs.git
Bug 249459 make-jars.pl should use CYGDRIVE_MOUNT
patch by sdwalker@myrealbox.com r=cls
This commit is contained in:
Родитель
27b3650476
Коммит
d40551bc34
|
@ -4,7 +4,14 @@
|
|||
|
||||
my $cygwin_mountprefix = "";
|
||||
if ($^O eq "cygwin") {
|
||||
$cygwin_mountprefix = $ENV{CYGDRIVE_MOUNT};
|
||||
if ($cygwin_mountprefix eq "") {
|
||||
$cygwin_mountprefix = `mount -p | awk '{ if (/^\\//) { print \$1; exit } }'`;
|
||||
if ($cygwin_mountprefix eq "") {
|
||||
print "Cannot determine cygwin mount points. Exiting.\n";
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
chomp($cygwin_mountprefix);
|
||||
# Remove extra ^M caused by using dos-mode line-endings
|
||||
chop $cygwin_mountprefix if (substr($cygwin_mountprefix, -1, 1) eq "\r");
|
||||
|
|
Загрузка…
Ссылка в новой задаче