summaryrefslogtreecommitdiff
path: root/firefox-xremote-client.sh.in
diff options
context:
space:
mode:
authorMartin Stransky <stransky@fedoraproject.org>2008-01-28 14:10:56 +0000
committerMartin Stransky <stransky@fedoraproject.org>2008-01-28 14:10:56 +0000
commitcac10961d449ba7777aac24d8dc2bcb4a11e5e38 (patch)
treec6c710ae8a5882107ea7eeb6911a210c8b3510b2 /firefox-xremote-client.sh.in
parentfix icon (diff)
downloadlibrewolf-fedora-ff-cac10961d449ba7777aac24d8dc2bcb4a11e5e38.tar.gz
librewolf-fedora-ff-cac10961d449ba7777aac24d8dc2bcb4a11e5e38.tar.bz2
librewolf-fedora-ff-cac10961d449ba7777aac24d8dc2bcb4a11e5e38.zip
- cleared starting scripts, removed useless parts
Diffstat (limited to 'firefox-xremote-client.sh.in')
-rw-r--r--firefox-xremote-client.sh.in32
1 files changed, 0 insertions, 32 deletions
diff --git a/firefox-xremote-client.sh.in b/firefox-xremote-client.sh.in
deleted file mode 100644
index d6152c6..0000000
--- a/firefox-xremote-client.sh.in
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-
-##
-## Set MOZILLA_FIVE_HOME
-##
-MOZILLA_FIVE_HOME="FFDIR"
-
-export MOZILLA_FIVE_HOME
-
-##
-## Select the propper plugin dir
-## Wrapped plug-ins are located in /lib/mozilla/plugins-wrapped
-##
-if [ -x "/usr/bin/mozilla-plugin-config" ]
-then
- MOZ_PLUGIN_DIR="plugins-wrapped"
-else
- MOZ_PLUGIN_DIR="plugins"
-fi
-
-##
-## Set LD_LIBRARY_PATH
-##
-if [ "$LD_LIBRARY_PATH" ]
-then
- LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME:$MOZILLA_FIVE_HOME/$MOZ_PLUGIN_DIR:LIBDIR/mozilla/$MOZ_PLUGIN_DIR:LIBDIR:$LD_LIBRARY_PATH
-else
- LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME:$MOZILLA_FIVE_HOME/$MOZ_PLUGIN_DIR:LIBDIR/mozilla/$MOZ_PLUGIN_DIR:LIBDIR
-fi
- export LD_LIBRARY_PATH
-
-$MOZILLA_FIVE_HOME/firefox -remote "$1"
bgstack15