From e0bde1ca7631ad8cdbf8faa2813b89fc675ff257 Mon Sep 17 00:00:00 2001 From: "mattwillis%gmail.com" Date: Mon, 7 Aug 2006 18:40:37 +0000 Subject: [PATCH] bug 344987 - removes more calendar xpi detrius. r=bsmedberg git-svn-id: svn://10.0.0.236/trunk@206734 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpfe/bootstrap/Makefile.in | 1 - .../S80calendar_fix_permissions_bug_230617 | 28 ------------------- 2 files changed, 29 deletions(-) delete mode 100644 mozilla/xpfe/bootstrap/init.d/S80calendar_fix_permissions_bug_230617 diff --git a/mozilla/xpfe/bootstrap/Makefile.in b/mozilla/xpfe/bootstrap/Makefile.in index 8434f15b367..4f54d48c4ec 100644 --- a/mozilla/xpfe/bootstrap/Makefile.in +++ b/mozilla/xpfe/bootstrap/Makefile.in @@ -301,7 +301,6 @@ DESKTOP_ICONS = \ addressbookWindow \ bmPropsWindow \ bookmark-window \ - calendar-window \ chatzilla-window \ downloadManager \ editorWindow \ diff --git a/mozilla/xpfe/bootstrap/init.d/S80calendar_fix_permissions_bug_230617 b/mozilla/xpfe/bootstrap/init.d/S80calendar_fix_permissions_bug_230617 deleted file mode 100644 index 4cf2c75e3c2..00000000000 --- a/mozilla/xpfe/bootstrap/init.d/S80calendar_fix_permissions_bug_230617 +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh -# S80calendar_fix_permissions_bug_230617 -# -# This script will correct the permission bits for the Mozilla -# Calendar (see bug 230617 - "Jan 9 Build will not create new -# Calendar, Event, or Task for *first time* installation") for details. - -# Prechecks -if [ -z "${MOZ_PIS_USER_DIR}" ] ; then - echo "${0}: Internal error: MOZ_PIS_USER_DIR not set." - exit 1 -fi -if [ ${MOZ_PIS_API} -lt 2 ] ; then - echo "${0}: Internal error: MOZ_PIS_API is ${MOZ_PIS_API}, should be >= 2." - exit 1 -fi - -# We run in a separate process so we are allows to use single-letter -# shell vars (see mozilla/xpfe/bootstrap/init.d/README) -for i in "${HOME}/${MOZ_PIS_USER_DIR}"/*/*.slt/Calendar ; do - if [ -d "${i}" ] ; then - if [ ! -r "${i}" -o ! -w "${i}" -o ! -x "${i}" ] ; then - echo "${0}: Fixing permissions for ${i} ..." - chmod u+rwx "${i}" - fi - fi -done -# EOF.