Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#10737 - extra/firefox (3) can't be lanch with 'firefox', only '/usr/bin/firefox'
Attached to Project:
Arch Linux
Opened by Maximilien Cuony (the_glu) - Monday, 23 June 2008, 08:42 GMT
Last edited by Jan de Groot (JGC) - Sunday, 29 June 2008, 21:26 GMT
Opened by Maximilien Cuony (the_glu) - Monday, 23 June 2008, 08:42 GMT
Last edited by Jan de Groot (JGC) - Sunday, 29 June 2008, 21:26 GMT
|
DetailsDescription:
maximilien@theglu:~$ firefox Could not read application.ini maximilien@theglu:~$ /usr/bin/firefox LoadPlugin: failed to initialize shared library /opt/mozilla/lib/plugins/mplayerplug-in.so [/opt/mozilla/lib/plugins/mplayerplug-in.so: fichier trop court] [..] maximilien@theglu:/usr/lib/firefox-3.0$ whereis firefox firefox: /usr/bin/firefox maximilien@theglu:~$ which firefox /usr/bin/firefox I did a source /etc/profile. I reinstall the package. I haven't any another firefox (updatedb && locate firefox) Package version : extra/firefox 3.0-1 Steps to reproduce: Update the package and type firefox in a terminal. How I fix : /usr/bin/firefox is a symb. link to /usr/lib/firefox-3.0/firefox. Remove /usr/bin/firefox, and change it to a bash script who do '/usr/lib/firefox-3.0/firefox $*' and it's should works. But it's ugly - will probably cause problem with an update etc... ;) |
This task depends upon
Closed by Jan de Groot (JGC)
Sunday, 29 June 2008, 21:26 GMT
Reason for closing: Fixed
Additional comments about closing: Fixed in 3.0-2.
Sunday, 29 June 2008, 21:26 GMT
Reason for closing: Fixed
Additional comments about closing: Fixed in 3.0-2.
- firefox checks realpath(binaryname)
- firefox checks for binaryname in path and uses realpath on that
When executing firefox from my home directory, realpath(firefox) will give ~/firefox, which is a directory, not the binary I was starting. This means we'll have to revert firefox to use a wrapper script again, so it is launched with the full path.