summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAron Griffis <agriffis@gentoo.org>2004-02-26 15:08:16 +0000
committerAron Griffis <agriffis@gentoo.org>2004-02-26 15:08:16 +0000
commit2f6bf2eec7b54052b58ffd66b0b13b2106dced24 (patch)
tree64147c7c4ad67a079ee29e18a10cc27d0bf62f6c /net-www
parentBug fixes ;) (Manifest recommit) (diff)
downloadgentoo-2-2f6bf2eec7b54052b58ffd66b0b13b2106dced24.tar.gz
gentoo-2-2f6bf2eec7b54052b58ffd66b0b13b2106dced24.tar.bz2
gentoo-2-2f6bf2eec7b54052b58ffd66b0b13b2106dced24.zip
Add a PATH fix from Bob Bell to be able to find xwininfo
Diffstat (limited to 'net-www')
-rw-r--r--net-www/mozilla-firefox/ChangeLog5
-rw-r--r--net-www/mozilla-firefox/files/firefox7
2 files changed, 9 insertions, 3 deletions
diff --git a/net-www/mozilla-firefox/ChangeLog b/net-www/mozilla-firefox/ChangeLog
index ef2799a208b5..f3cb7409b189 100644
--- a/net-www/mozilla-firefox/ChangeLog
+++ b/net-www/mozilla-firefox/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-www/mozilla-firefox
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla-firefox/ChangeLog,v 1.13 2004/02/26 04:13:41 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla-firefox/ChangeLog,v 1.14 2004/02/26 15:08:15 agriffis Exp $
+
+ 26 Feb 2004; Aron Griffis <agriffis@gentoo.org> files/firefox:
+ Add a PATH fix from Bob Bell to be able to find xwininfo
25 Feb 2004; Aron Griffis <agriffis@gentoo.org> files/firefox:
Update launcher script to fix bug 25737: The launcher didn't understand
diff --git a/net-www/mozilla-firefox/files/firefox b/net-www/mozilla-firefox/files/firefox
index 9a5397fe26e1..36604aad58e5 100644
--- a/net-www/mozilla-firefox/files/firefox
+++ b/net-www/mozilla-firefox/files/firefox
@@ -2,12 +2,15 @@
#
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla-firefox/files/firefox,v 1.5 2004/02/26 04:13:41 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-www/mozilla-firefox/files/firefox,v 1.6 2004/02/26 15:08:16 agriffis Exp $
# Set MOZILLA_NEWTYPE to "window" in your environment if you prefer
# new Firefox windows instead of new tabs
newtype=${MOZILLA_NEWTYPE:-"window"}
+# Make sure necessary progs are in the PATH
+PATH=/usr/bin:/bin:/usr/X11R6/bin:$PATH
+
# Support both firefox and mozilla
case "$0" in
*fox*)
@@ -49,7 +52,7 @@ done
# Try to start in an existing session; check all screens
declare -a screens=(
- $(/usr/X11R6/bin/xdpyinfo | awk '
+ $(xdpyinfo | awk '
/^name of display:/ {
disp = substr($NF, 0, index($NF, ".")-1)
}