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
parent 4012f7b8c2
commit a98d05c2d1
2 changed files with 3 additions and 3 deletions

View File

@ -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.

View File

@ -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";