On Tue, Aug 26, 2008 at 05:45:08PM +0900, Jonny <[EMAIL PROTECTED]> wrote:
> Package: xulrunner-1.9
> Version: 1.9.0.1-1
> Severity: wishlist
>
> --- browser/app/mozilla.in.orig
> +++ browser/app/mozilla.in
> @@ -135,7 +135,7 @@
> then
> echo $dist_bin/run-mozilla.sh $script_args $dist_bin/$MOZILLA_BIN "$@"
> fi
> -"$dist_bin/run-mozilla.sh" $script_args "$dist_bin/$MOZILLA_BIN" "$@"
> +exec "$dist_bin/run-mozilla.sh" $script_args "$dist_bin/$MOZILLA_BIN" "$@"
> exitcode=$?
>
> exit $exitcode
That seems ok
> --- build/unix/run-mozilla.sh.orig
> +++ build/unix/run-mozilla.sh
> @@ -163,7 +163,7 @@
> ##
> ## Run the program
> ##
> - "$prog" ${1+"$@"}
> + exec "$prog" ${1+"$@"}
> exitcode=$?
> if [ "$DEBUG_CORE_FILES" ]
> then
The whole point of not using exec here is the rest of the code, possibly
launching a debugger... Adding exec breaks this.
Mike
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]