On Thu, Oct 26, 2006 at 10:24:28AM -0000, chpe wrote:
> Actually the latest firefox source in edgy (firefox_2.0+0dfsg-
> 0ubuntu3.diff.gz) still has the bug, since the configure test (which is
> taken from gecko trunk) still contains this bashism:
>
> + if test `grep -c "@PLT" conftest.S` == 0; then
>
> This causes the gcc bug to go undetected.
It looks to be patched in configure, but not configure.in, so it will work
as-is, but resurface if configure is regenerated.
mdz@drescher:~/firefox-2.0+0dfsg$ grep @PLT configure configure.in
configure: if test `grep -c "@PLT" conftest.S` = 0; then
configure: if test `grep -c "@PLT" conftest.S` = 0; then
configure.in: if test `grep -c "@PLT" conftest.S` == 0; then
configure.in: if test `grep -c "@PLT" conftest.S` == 0; then
On Thu, Oct 26, 2006 at 10:24:28AM -0000, chpe wrote:
> Actually the latest firefox source in edgy (firefox_2.0+0dfsg-
> 0ubuntu3.diff.gz) still has the bug, since the configure test (which is
> taken from gecko trunk) still contains this bashism:
>
> + if test `grep -c "@PLT" conftest.S` == 0; then
>
> This causes the gcc bug to go undetected.
It looks to be patched in configure, but not configure.in, so it will work
as-is, but resurface if configure is regenerated.
mdz@drescher: ~/firefox- 2.0+0dfsg$ grep @PLT configure configure.in
configure: if test `grep -c "@PLT" conftest.S` = 0; then
configure: if test `grep -c "@PLT" conftest.S` = 0; then
configure.in: if test `grep -c "@PLT" conftest.S` == 0; then
configure.in: if test `grep -c "@PLT" conftest.S` == 0; then
--
- mdz