summaryrefslogtreecommitdiff
path: root/firefox.sh.in
diff options
context:
space:
mode:
authorMartin Stransky <stransky@fedoraproject.org>2007-07-31 10:50:12 +0000
committerMartin Stransky <stransky@fedoraproject.org>2007-07-31 10:50:12 +0000
commitc6d9eb19e157f2e3035b1cf8bb2ce74edbe2ca3b (patch)
tree32cb70ec11c76a909f8b333da65e07c5adc79f70 /firefox.sh.in
parent- Update to 2.0.0.5 (diff)
downloadlibrewolf-fedora-ff-c6d9eb19e157f2e3035b1cf8bb2ce74edbe2ca3b.tar.gz
librewolf-fedora-ff-c6d9eb19e157f2e3035b1cf8bb2ce74edbe2ca3b.tar.bz2
librewolf-fedora-ff-c6d9eb19e157f2e3035b1cf8bb2ce74edbe2ca3b.zip
added nspluginwrapper support
Diffstat (limited to 'firefox.sh.in')
-rw-r--r--firefox.sh.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index 7a7ea56..4ce0537 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -77,9 +77,9 @@ export MOZILLA_FIVE_HOME
##
if [ "$MOZ_PLUGIN_PATH" ]
then
- MOZ_PLUGIN_PATH=$MOZ_PLUGIN_PATH:$MOZ_LIB_DIR/mozilla/plugins:$MOZ_DIST_BIN/plugins
+ MOZ_PLUGIN_PATH=$MOZ_PLUGIN_PATH:$MOZ_LIB_DIR/mozilla/plugins-wrapped:$MOZ_DIST_BIN/plugins-wrapped
else
- MOZ_PLUGIN_PATH=$MOZ_LIB_DIR/mozilla/plugins:$MOZ_DIST_BIN/plugins
+ MOZ_PLUGIN_PATH=$MOZ_LIB_DIR/mozilla/plugins-wrapped:$MOZ_DIST_BIN/plugins-wrapped
fi
export MOZ_PLUGIN_PATH
@@ -135,6 +135,9 @@ function open_compose() {
# OK, here's where all the real work gets done
+# configure plug-ins
+/usr/bin/firefox-plugin-config
+
# check to see if there's an already running instance or not
ALREADY_RUNNING=`check_running`
bgstack15