зеркало из https://github.com/mozilla/gecko-dev.git
NOT IN THE BUILD
This commit is contained in:
Родитель
20f993546d
Коммит
7ec1b73048
|
@ -50,9 +50,15 @@ sub EnsureFileInDir
|
|||
my ($destPath, $srcPath, $objDir) = @_;
|
||||
|
||||
if (!-e $destPath) {
|
||||
$destPath =~ /(.*)[\\\/]([\w\d.\-]+)/;
|
||||
my $dir = $1;
|
||||
my $file = $2;
|
||||
my $dir = "";
|
||||
my $file;
|
||||
if ($destPath =~ /([\w\d.\-\\\/]+)[\\\/]([\w\d.\-]+)/) {
|
||||
$dir = $1;
|
||||
$file = $2;
|
||||
}
|
||||
else {
|
||||
$file = $destPath;
|
||||
}
|
||||
|
||||
if ($srcPath) {
|
||||
$file = $srcPath;
|
||||
|
|
Загрузка…
Ссылка в новой задаче