summaryrefslogtreecommitdiff
path: root/firefox.sh.in
diff options
context:
space:
mode:
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