bug 243616 make sure to call nsinstall.exe with a windows-style path

patch by Andreas Kunz <durbacher@gmx.de> r=bsmedberg
This commit is contained in:
cbiesinger%web.de 2004-07-15 15:50:39 +00:00
parent 0160bd6644
commit 4d5043b14c
2 changed files with 4 additions and 2 deletions

View File

@ -112,7 +112,8 @@ print " Xpinstall version: $gDefaultProductVersion\n";
print "\n";
$gDirPackager = "$topsrcdir/xpinstall/packager";
$gDirDistInstall = "$inDistPath/inst_gre";
$gDirDistInstall = `cygpath -mai $inDistPath/inst_gre`;
chomp $gDirDistInstall;
$gDirStageProduct = "$inStagePath/gre";
# Create the stage area here.

View File

@ -125,7 +125,8 @@ print "\n";
$gDirPackager = "$topsrcdir/xpinstall/packager";
$gDirStageProduct = "$inStagePath/mozilla";
$gDirDistInstall = "$inDistPath/install";
$gDirDistInstall = `cygpath -mai $inDistPath/install`;
chomp $gDirDistInstall;
$gDirDistInstGre = "$inDistPath/inst_gre";
# Build GRE installer package first before building Mozilla! GRE installer is required by the mozilla installer.