mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-02 12:07:52 +00:00
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:
parent
0160bd6644
commit
4d5043b14c
@ -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.
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user