diff options
-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 |