part of Bug #245430 --> thunderbird static build support.

Get rid of the mail\config packaging of chrome into dist\thunderbird. Let the installer do it as part of the
packaging process.

This means we can get rid of the thunderbird installer ifdefs to look in dist\thunderbird instead of dist\bin.
This commit is contained in:
scott%scott-macgregor.org 2004-07-18 21:46:11 +00:00
Родитель 84a3c2ac4a
Коммит ed36020a97
2 изменённых файлов: 0 добавлений и 8 удалений

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

@ -3171,11 +3171,7 @@ void GetXpinstallPath(char *aPath, int aPathBufSize)
{
MozCopyStr(siCFXpcomFile.szDestination, aPath, aPathBufSize);
AppendBackSlash(aPath, aPathBufSize);
#ifdef MOZ_THUNDERBIRD
lstrcat(aPath, "thunderbird");
#else
lstrcat(aPath, "bin");
#endif
}
else
MozCopyStr(gGre.homePath, aPath, aPathBufSize);

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

@ -521,11 +521,7 @@ HRESULT ProcessXpcomFile()
lstrcpy(szDestination, siCFXpcomFile.szDestination);
AppendBackSlash(szDestination, sizeof(szDestination));
#ifdef MOZ_THUNDERBIRD
lstrcat(szDestination, "thunderbird");
#else
lstrcat(szDestination, "bin");
#endif
FileCopy(szSource, szDestination, TRUE, FALSE);
return(FO_SUCCESS);