fixing bug 195136 - Palm Sync readme file needs to be packaged and installed with mail.xpi. r=sgehani, sr=dmose, a=asa

This commit is contained in:
ssu%netscape.com 2003-04-23 23:39:11 +00:00
parent 06399d71bd
commit 245584a2d9
3 changed files with 18 additions and 0 deletions

View File

@ -24,12 +24,20 @@ topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
README = palm.html
include $(DEPTH)/config/autoconf.mk
DIRS = build public src
ifdef PALM_CDK_DIR
DIRS += conduit
install:: $(README)
$(INSTALL) $< $(DIST)/bin
GARBAGE += $(DIST)/bin/$(README)
else
libs::
@echo " "

View File

@ -311,6 +311,7 @@ bin\components\palmsync.xpt
bin\components\bayesflt.dll
bin\components\mailview.dll
bin\components\mailview.xpt
bin\palm.html
[chatzilla]
bin\components\chatzilla-service.js

View File

@ -80,6 +80,8 @@ function createShortcuts()
filePalmSyncInstallExe = getFolder("Program", "PalmSyncInstall.exe");
scDescPalmSyncInstall = "Address Book Palm Sync Install";
scDescPalmSyncUninstall = "Address Book Palm Sync Uninstall";
filePalmSyncReadme = getFolder("Program", "palm.html");
scDescPalmSyncReadme = "Palm Sync User Guide";
scExeDesc = "Mail";
scParam = "-mail";
scFolderName = "$ProductName$";
@ -204,6 +206,13 @@ function createShortcuts()
/* create the shortcuts in the new sub folder */
File.windowsShortcut(filePalmSyncInstallExe, fStartMenuPalmSync, scDescPalmSyncInstall, fProgram, "", filePalmSyncInstallExe, 0);
File.windowsShortcut(filePalmSyncInstallExe, fStartMenuPalmSync, scDescPalmSyncUninstall, fProgram, "/u", filePalmSyncInstallExe, 0);
// only create the palm sync readme shortcut if the file exist
if(File.exists(filePalmSyncReadme))
{
/* create the shortcuts in the new sub folder */
File.windowsShortcut(filePalmSyncReadme, fStartMenuPalmSync, scDescPalmSyncReadme, fProgram, "", filePalmSyncReadme, 0);
}
}
//