#!/bin/bash 
# First check if this variable is already set 
# then if not set, check it (maybe), then set it 
#
# Set MOZILLA_FIVE_HOME for packages which need
# the mozilla libs (e.g. monodevelop)
#

if  [ -z "$MOZILLA_FIVE_HOME" ] ; then 
	MOZILLA_FIVE_HOME=/usr/lib/xulrunner-1.9
fi 
export  MOZILLA_FIVE_HOME
