summaryrefslogtreecommitdiff
path: root/firefox.sh.in
diff options
context:
space:
mode:
authorMartin Stransky <stransky@fedoraproject.org>2007-08-07 08:32:03 +0000
committerMartin Stransky <stransky@fedoraproject.org>2007-08-07 08:32:03 +0000
commit9ba2f30c2e889720841e0b6fe403e3957edb939f (patch)
tree62b216cb0a9f15bbaec5365deffc299a7a321b0d /firefox.sh.in
parentunwrapped plugins moved to the old location (diff)
downloadlibrewolf-fedora-ff-9ba2f30c2e889720841e0b6fe403e3957edb939f.tar.gz
librewolf-fedora-ff-9ba2f30c2e889720841e0b6fe403e3957edb939f.tar.bz2
librewolf-fedora-ff-9ba2f30c2e889720841e0b6fe403e3957edb939f.zip
removed plugin configuration utility
Diffstat (limited to 'firefox.sh.in')
-rw-r--r--firefox.sh.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index 690fd03..7d133cd 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -75,7 +75,7 @@ export MOZILLA_FIVE_HOME
## Select the propper plugin dir
## Wrapped plug-ins are located in /lib/mozilla/plugins-wrapped
##
-if [ -x "$MOZ_LIB_DIR/nspluginwrapper/npviewer" ]
+if [ -x "/usr/bin/mozilla-plugin-config" ]
then
MOZ_PLUGIN_DIR="plugins-wrapped"
else
@@ -147,9 +147,9 @@ function open_compose() {
##
## If plugins are wrapped, check them
##
-if [ -x "$MOZ_LIB_DIR/nspluginwrapper/npviewer" ]
+if [ -x "/usr/bin/mozilla-plugin-config" ]
then
- /usr/bin/firefox-plugin-config
+ /usr/bin/mozilla-plugin-config
fi
# check to see if there's an already running instance or not
bgstack15