Tried to load it from within a console window and it gave me the output:
- Code: Select all
/usr/bin/mozilla: line 75: syntax error near unexpected token `elif'
/usr/bin/mozilla: line 75: `elif [ "$MOZILLA_DSP" = "none" ];then'
Lines 75 and 76
- Code: Select all
elif [ "$MOZILLA_DSP¨ = "none" ]; then
MOZILLA_DSP=""
fi
should be
- Code: Select all
if [ "$MOZILLA_DSP¨ = "none" ]; then
MOZILLA_DSP=""
fi
and then mozilla starts again.
I posted this in the Debian section because I suppose it's a debian-mozilla specific issue, feel free to move it to "General applications" if it also affects mozilla on other OSes.



