aboutsummaryrefslogtreecommitdiffstats
path: root/mail/thunderbird/files
diff options
context:
space:
mode:
authormarcus <marcus@FreeBSD.org>2005-09-30 13:35:28 +0800
committermarcus <marcus@FreeBSD.org>2005-09-30 13:35:28 +0800
commitf9f9a29dba4b777f2c6f0fdad60b3c062ca87397 (patch)
treefd4cdb450cc70493e030f7fa9a0e3081360c1dc9 /mail/thunderbird/files
parentaa20bbcdbb8145f2f5293ca408d42bfb741ebf74 (diff)
downloadfreebsd-ports-gnome-f9f9a29dba4b777f2c6f0fdad60b3c062ca87397.tar.gz
freebsd-ports-gnome-f9f9a29dba4b777f2c6f0fdad60b3c062ca87397.tar.zst
freebsd-ports-gnome-f9f9a29dba4b777f2c6f0fdad60b3c062ca87397.zip
Update to 1.0.7.
Security: See http://www.mozilla.org/projects/security/known-vulnerabilities.html for security bugs fixed in this release.
Diffstat (limited to 'mail/thunderbird/files')
-rw-r--r--mail/thunderbird/files/patch-mail_app_mozilla.in14
1 files changed, 8 insertions, 6 deletions
diff --git a/mail/thunderbird/files/patch-mail_app_mozilla.in b/mail/thunderbird/files/patch-mail_app_mozilla.in
index 01091fb2ce3b..24eeb12c3ab9 100644
--- a/mail/thunderbird/files/patch-mail_app_mozilla.in
+++ b/mail/thunderbird/files/patch-mail_app_mozilla.in
@@ -122,7 +122,7 @@
# Use run-mozilla.sh in the current dir if it exists
# If not, then start resolving symlinks until we find run-mozilla.sh
-@@ -82,160 +113,214 @@
+@@ -82,162 +113,214 @@
curdir=`dirname "$progname"`
progbase=`basename "$progname"`
run_moz="$curdir/run-mozilla.sh"
@@ -181,7 +181,6 @@
-fi
-
-script_args=""
--moreargs=""
-debugging=0
-MOZILLA_BIN="${progbase}-bin"
-
@@ -410,7 +409,8 @@
-# Default action - no running instance or _USE_EXIST (${_USE_EXIST}) ! -eq 1
-########################################################################### Main
--while [ $# -gt 0 ]
+-pass_arg_count=0
+-while [ $# -gt $pass_arg_count ]
-do
- case "$1" in
- -p | --pure | -pure)
@@ -427,8 +427,11 @@
- shift 2
- ;;
- *)
-- moreargs="$moreargs \"$1\""
-- shift 1
+- # Move the unrecognized argument to the end of the list.
+- arg="$1"
+- shift
+- set -- "$@" "$arg"
+- pass_arg_count=`expr $pass_arg_count + 1`
- ;;
- esac
-done
@@ -452,7 +455,6 @@
+fi
-export MRE_HOME
--eval "set -- $moreargs"
+# real invocation
+eval "set -- ${moreargs}"