summaryrefslogtreecommitdiff
path: root/firefox.sh.in
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@fedoraproject.org>2007-03-12 16:40:52 +0000
committerChristopher Aillon <caillon@fedoraproject.org>2007-03-12 16:40:52 +0000
commit89a39c8164383b907e146caa5ea9047fff6aca97 (patch)
tree24ea778c3ac3a419959e8a70b946876ffbbcf04f /firefox.sh.in
parentUpdate to 2002 (diff)
downloadlibrewolf-fedora-ff-89a39c8164383b907e146caa5ea9047fff6aca97.tar.gz
librewolf-fedora-ff-89a39c8164383b907e146caa5ea9047fff6aca97.tar.bz2
librewolf-fedora-ff-89a39c8164383b907e146caa5ea9047fff6aca97.zip
- Oops, define the variables I expect to use.
Diffstat (limited to 'firefox.sh.in')
-rw-r--r--firefox.sh.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index 22a7f26..7a7ea56 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -48,8 +48,6 @@ case $MOZ_ARCH in
;;
esac
-#[ -r /etc/sysconfig/firefox-arch ] && . /etc/sysconfig/firefox-arch
-
if [ ! -x $MOZ_LIB_DIR/firefox-FIREFOX_VERSION/firefox-bin ]; then
if [ ! -x $SECONDARY_LIB_DIR/firefox-FIREFOX_VERSION/firefox-bin ]; then
echo "Error: $MOZ_LIB_DIR/firefox-FIREFOX_VERSION/firefox-bin not found"
@@ -61,6 +59,7 @@ if [ ! -x $MOZ_LIB_DIR/firefox-FIREFOX_VERSION/firefox-bin ]; then
MOZ_LIB_DIR="$SECONDARY_LIB_DIR"
fi
MOZ_DIST_BIN="$MOZ_LIB_DIR/firefox-FIREFOX_VERSION"
+MOZ_EXTENSIONS_DIR="$MOZ_DIST_BIN/extensions"
MOZ_PROGRAM="$MOZ_DIST_BIN/firefox-bin"
MOZ_CLIENT_PROGRAM="$MOZ_DIST_BIN/mozilla-xremote-client"
MOZ_CLIENT_PROGRAM_PARAM="-a firefox"
bgstack15