#!/bin/sh # # Created by Eric Sandall 2004-12-09 # # This script is here to set the correct LD_LIBRARY_PATH for firefox 1.0+ # based on the information from this thread: # http://lists.freebsd.org/pipermail/freebsd-gnome/2004-October/008443.html # export LD_LIBRARY_PATH=/usr/lib/firefox if [ $USE_AOSS_WRAPPER ] && [ -x /usr/bin/aoss ]; then /usr/bin/aoss /usr/lib/firefox/firefox-bin "$@" else /usr/lib/firefox/firefox-bin "$@" fi