diff options
author | Christopher James Lahey <clahey@ximian.com> | 2003-09-17 00:43:44 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2003-09-17 00:43:44 +0800 |
commit | d13ecf2ee0da33a5ba4896b8c9eadb09a8db61d6 (patch) | |
tree | ec6f5f96c880cb9fb453138022a599503d221e1a | |
parent | 0c4624969e1518cf7d69e93b0b05e3a15af7fe15 (diff) | |
download | gsoc2013-epiphany-d13ecf2ee0da33a5ba4896b8c9eadb09a8db61d6.tar gsoc2013-epiphany-d13ecf2ee0da33a5ba4896b8c9eadb09a8db61d6.tar.gz gsoc2013-epiphany-d13ecf2ee0da33a5ba4896b8c9eadb09a8db61d6.tar.bz2 gsoc2013-epiphany-d13ecf2ee0da33a5ba4896b8c9eadb09a8db61d6.tar.lz gsoc2013-epiphany-d13ecf2ee0da33a5ba4896b8c9eadb09a8db61d6.tar.xz gsoc2013-epiphany-d13ecf2ee0da33a5ba4896b8c9eadb09a8db61d6.tar.zst gsoc2013-epiphany-d13ecf2ee0da33a5ba4896b8c9eadb09a8db61d6.zip |
Added MOZ_PLUGIN_PATH default.
2003-09-16 Christopher James Lahey <clahey@ximian.com>
* src/epiphany.in: Added MOZ_PLUGIN_PATH default.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/epiphany.in | 5 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2003-09-16 Christopher James Lahey <clahey@ximian.com> + + * src/epiphany.in: Added MOZ_PLUGIN_PATH default. + 2003-09-16 Christian Persch <chpe@cvs.gnome.org> * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init_defaults): diff --git a/src/epiphany.in b/src/epiphany.in index fe0c28f5d..5efa1562e 100644 --- a/src/epiphany.in +++ b/src/epiphany.in @@ -11,6 +11,11 @@ else exit fi +if [ -z "$MOZ_PLUGIN_PATH" ]; then + MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins:/usr/libexec/plugins/mozilla + export MOZ_PLUGIN_PATH +fi + LD_LIBRARY_PATH=$MOZILLA_HOME:$LD_LIBRARY_PATH export LD_LIBRARY_PATH |