Bug 178623: run-mozilla.sh should popuplate ${XPSERVERLIST} if it was not set yet. Author=Roland.Mainz@informatik.med.uni-giessen.de, r=pete.zha@sun.com, sr=roc+moz, moa=cls

git-svn-id: svn://10.0.0.236/trunk@133201 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
smontagu%netscape.com 2002-11-06 22:22:32 +00:00
parent 7a6f51197d
commit 5bf837c7e7

View File

@ -391,6 +391,16 @@ then
XSUNSMESIZE="512"
export XSUNTRANSPORT XSUNSMESIZE
fi
## Populate XPSERVERLIST if it was not set yet
if [ "$XPSERVERLIST" = "" ]
then
if [ -f /etc/init.d/xprint ] ; then
XPSERVERLIST="`/bin/sh /etc/init.d/xprint get_xpserverlist`"
if [ "$XPSERVERLIST" != "" ] ; then
export XPSERVERLIST
fi
fi
fi
# Font path for Xft
FONTCONFIG_PATH="/etc/fonts:${MOZILLA_FIVE_HOME}/res/Xft"
export FONTCONFIG_PATH