This commit is contained in:
curt%netscape.com 2002-08-29 04:03:26 +00:00
Родитель 098e46bda1
Коммит fa29a64555
2 изменённых файлов: 27 добавлений и 8 удалений

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

@ -0,0 +1,19 @@
; NOTE to L10n: the .lnk strings are the names of the shortcuts created by
; each component listed as a section. If the shortcut names have been
;localized in their respective .jst file, then these must also be localized.
[browser]
ClientTypeName=StartMenuInternet
ClientProductKey=mozilla.exe
;*** LOCALIZE ME BABY ***
DesktopShortcut0=Mozilla.lnk
;*** LOCALIZE ME BABY ***
QuickLaunchBarShortcut0=Mozilla.lnk
[mail]
ClientTypeName=Mail
ClientProductKey=Mozilla
;*** LOCALIZE ME BABY ***
DesktopShortcut0=Mail.lnk
;*** LOCALIZE ME BABY ***
QuickLaunchBarShortcut0=Mail.lnk

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

@ -93,11 +93,11 @@ if($inRedirIniURL eq "")
}
$seiFileNameGeneric = "nsinstall.exe";
$seiFileNameSpecific = "mre-win32-installer.exe";
$seiStubRootName = "mre-win32-stub-installer";
$seiFileNameSpecific = "mfcembed-win32-installer.exe";
$seiStubRootName = "mfcembed-win32-stub-installer";
$seiFileNameSpecificStub = "$seiStubRootName.exe";
$seuFileNameSpecific = "MREUninstall.exe";
$seuzFileNameSpecific = "mreuninstall.zip";
$seuzFileNameSpecific = "mfcembeduninstall.zip";
# set environment vars for use by other .pl scripts called from this script.
if($versionParts[2] eq "0")
@ -131,7 +131,7 @@ if(!(-d "$inStagePath"))
}
# List of components for to create xpi files from
@gComponentList = ("mre");
@gComponentList = ("mfcembed");
if(VerifyComponents()) # return value of 0 means no errors encountered
{
@ -178,13 +178,13 @@ if(MakeXpiFile())
}
# Grab xpcom from mozilla build
if(system("copy $inDistPath\\..\\install\\xpcom.xpi $inDistPath"))
if(system("copy $inDistPath\\..\\install\\xpi\\xpcom.xpi $inDistPath"))
{
die "\n Error: copy $inDistPath\\..\\install\\xpcom.xpi $inDistPath\n";
die "\n Error: copy $inDistPath\\..\\install\\xpi\\xpcom.xpi $inDistPath\n";
}
if(system("copy $inDistPath\\..\\install\\xpcom.xpi $inDistPath\\xpi"))
if(system("copy $inDistPath\\..\\install\\xpi\\xpcom.xpi $inDistPath\\xpi"))
{
die "\n Error: copy $inDistPath\\..\\install\\xpcom.xpi $inDistPath\\xpi\n";
die "\n Error: copy $inDistPath\\..\\install\\xpi\\xpcom.xpi $inDistPath\\xpi\n";
}