|
Bugzilla – Full Text Bug Listing |
| Summary: | Firefox fail to open local file with space in path. | ||
|---|---|---|---|
| Product: | [openSUSE] SUSE Linux 10.1 | Reporter: | Christian Filteau <ch819762> |
| Component: | Firefox | Assignee: | E-mail List <bnc-team-mozilla> |
| Status: | RESOLVED DUPLICATE | QA Contact: | E-mail List <qa-bugs> |
| Severity: | Normal | ||
| Priority: | P5 - None | CC: | andreas.hanke |
| Version: | Final | ||
| Target Milestone: | --- | ||
| Hardware: | i686 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Found By: | Other | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
|
Description
Christian Filteau
2006-09-05 21:21:24 UTC
Not fixed in 1.5.0.7-1.2
Solution for 1.5.0.7-1.2:
Open the file "/usr/lib/firefox/firefox.sh".
Replace:
---------------------------------------------------
if [ -d /proc/asound ]; then
LD_PRELOAD=/usr/$LIB/libaoss.so${LD_PRELOAD:+:$LD_PRELOAD} $MOZ_PROGRAM $@
else
$MOZ_PROGRAM $@
fi
---------------------------------------------------
By:
---------------------------------------------------
if [ -d /proc/asound ]; then
LD_PRELOAD=/usr/$LIB/libaoss.so${LD_PRELOAD:+:$LD_PRELOAD} $MOZ_PROGRAM "$@"
else
$MOZ_PROGRAM "$@"
fi
---------------------------------------------------
Gnome is configured to use /usr/bin/firefox %s (apparently it takes care of the quoting for you). I suspect that kde should be similarly configured. -> kde dudes. $rpm -qf /usr/lib/firefox/firefox.sh MozillaFirefox-2.0.0.1-0.1 KDE maintainers do not maintain that. *** This bug has been marked as a duplicate of bug 231683 *** |