When emerging w3m-0.4 it's possible for the echo commands to become out of sync with the configure script when the gpm USE flag is disabled. The following patch provides a fix. --- /usr/portage/net-www/w3m/w3m-0.4.ebuild 2003-03-05 09:51:16.000000000 -0800 +++ w3m-0.4.ebuild 2003-03-05 23:18:51.000000000 -0800 @@ -77,7 +77,7 @@ # Do you want color ESC sequence for Kterm/pxvt echo y # Use mouse (requires xterm/kterm/gpm/sysmouse) - use gpm &>/dev/null && echo y + use gpm &>/dev/null && echo y || echo n # Use popup menu echo y # Use cookie Reproducible: Always Steps to Reproduce: 1. 2. 3.
Thanks, it's fixed in cvs now. Did you get the "configure out of sync; ebuild needs an update" message? I put it in there to catch exactly this kind of thing... :-|
Yep, the "configure out of sync" message worked.