[15234] in Athena Bugs
Bug in netscape script
daemon@ATHENA.MIT.EDU (Charles M. Hannum)
Mon Jul 7 12:50:04 1997
Date: Mon, 7 Jul 1997 12:50:00 -0400
From: "Charles M. Hannum" <mycroft@MIT.EDU>
To: bugs@MIT.EDU
The shared script to start up netscape does this:
NPX_PLUGIN_PATH=$NPX_PLUGIN_PATH${NPX_PLUGIN_PATH+:}/mit/acro/nsplugins
This is incorrect. If NPX_PLUGIN_PATH is unset, it defaults to
$HOME/.netscape/plugins. To emulate this behaviour, the script should
do:
NPX_PLUGIN_PATH=${NPX_PLUGIN_PATH:-$HOME/.netscape/plugins}:/mit/acro/nsplugins