Re: firefox installation "Bernhard Albers" <bernhard4u@gmx.de> wrote in message
news:c0oc9j$199gbe$1@ID-201205.news.uni-berlin.de...
> Hi NG!
>
> I just emerged firefox 0.8 (mozilla-firefox). It compiled fine, but when I
> start the browser I get the following error:
>
> /usr/bin/firefox: line 106: /firefox: Datei oder Verzeichnis nicht
gefunden
>
> Take a look at /usr/bin/firefox :
>
> cat -n /usr/bin/firefox
............
> 106 ${fbpath}/firefox "${args[@]}" "$u" &
Hello,
the problem is with fbpath who is not initialized... I have just replaced
the variable with the full path of the binary. Probably not the better
solution, but it works ;-) You should also change it to the line number 95.
If you prefer it is also possible to add the declaration of the variable at
the beginning of the script with the correct path.
106 /path/to/firefox "${args[@]}" "$u" &
Hope this helps,
Regards,
Olivier |