Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-src commit in mozilla-launcher: mozilla-launcher
Date: Tue, 08 Jan 2008 16:47:03
Message-Id: E1JCHbQ-0002OG-N2@stork.gentoo.org
1 armin76 08/01/08 16:47:00
2
3 Modified: mozilla-launcher
4 Log:
5 Bumb, allow to run xulrunner binaries
6
7 Revision Changes Path
8 1.58 mozilla-launcher/mozilla-launcher
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-src/mozilla-launcher/mozilla-launcher?rev=1.58&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-src/mozilla-launcher/mozilla-launcher?rev=1.58&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-src/mozilla-launcher/mozilla-launcher?r1=1.57&r2=1.58
13
14 Index: mozilla-launcher
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-src/mozilla-launcher/mozilla-launcher,v
17 retrieving revision 1.57
18 retrieving revision 1.58
19 diff -u -r1.57 -r1.58
20 --- mozilla-launcher 1 Jan 2008 14:07:46 -0000 1.57
21 +++ mozilla-launcher 8 Jan 2008 16:47:00 -0000 1.58
22 @@ -1,5 +1,5 @@
23 #!/bin/bash
24 -# $Header: /var/cvsroot/gentoo-src/mozilla-launcher/mozilla-launcher,v 1.57 2008/01/01 14:07:46 armin76 Exp $
25 +# $Header: /var/cvsroot/gentoo-src/mozilla-launcher/mozilla-launcher,v 1.58 2008/01/08 16:47:00 armin76 Exp $
26 #
27 # Portions of this file are extracted from the mozilla.org distributed scripts.
28 # Those portions are Copyright (C) 1998 Netscape Communmications Corporation and
29 @@ -167,6 +167,7 @@
30 export MOZILLA_FIVE_HOME=${MOZILLA_LIBDIR:-"/usr/lib/xulrunner"}
31 remote=$MOZILLA_FIVE_HOME/mozilla-xremote-client
32 mozbin=$MOZILLA_FIVE_HOME/xulrunner-bin
33 + xulparams=$XUL_PARAMS
34 ;;
35
36 *-bin)
37 @@ -436,7 +437,7 @@
38
39 # Note that --args works for gdb and ddd. Other debuggers will need another
40 # method if added to this script.
41 - $(type -P aoss) "$debugger" --args "$mozbin" "$@"
42 + $(type -P aoss) "$debugger" --args "$mozbin" $xulparams "$@"
43
44 # Don't try to load additional URLs if debugging
45 unset urls
46 @@ -444,10 +445,10 @@
47 case " $* " in
48 *' -ProfileManager '*|*' -P '*)
49 # bug 114683: -ProfileManager doesn't work with DeerPark
50 - MOZ_NO_REMOTE=1 $(type -P aoss) "$mozbin" "$@" &
51 + MOZ_NO_REMOTE=1 $(type -P aoss) "$mozbin" $xulparams "$@" &
52 ;;
53 *)
54 - $(type -P aoss) "$mozbin" "$@" &
55 + $(type -P aoss) "$mozbin" $xulparams "$@" &
56 ;;
57 esac
58 fi
59
60
61
62 --
63 gentoo-commits@l.g.o mailing list