updated build scripts for windows installer. not part of tinderbox builds

This commit is contained in:
ssu%netscape.com 1999-09-21 08:28:22 +00:00
Родитель c5e4757fe6
Коммит 23836abc9a
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -58,7 +58,7 @@ if(!(-e "$inStagePath"))
# Make sure inDestPath exists
if(!(-e "$inDistPath"))
{
system("mkdir /s $inDestPath");
system("mkdir $inDestPath");
}
MakeConfigFile();
@ -79,7 +79,7 @@ if(-e "$inDistPath\\setup")
}
else
{
system("mkdir /s $inDistPath\\setup");
system("mkdir $inDistPath\\setup");
}
# Copy the setup files to the dist setup directory.

Просмотреть файл

@ -85,7 +85,7 @@ if(-e "install.js")
# make sure inDestPath exists
if(!(-e "$inDestPath"))
{
system("mkdir /s $inDestPath");
system("mkdir $inDestPath");
}
print "\n Making $inComponentName.xpi...\n";