| Bug#: 16946 | Product: Gentoo Linux | Version: unspecified | Platform: x86 |
| OS/Version: Linux | Status: RESOLVED | Severity: normal | Priority: P2 |
| Resolution: FIXED | Assigned To: agriffis@gentoo.org | Reported By: gillr@apozem.org | |
| Component: Ebuilds | |||
| URL: | |||
| Summary: configure borks while emerging w3m-0.4 | |||
| Keywords: | |||
| Status Whiteboard: | |||
| Opened: 2003-03-06 02:20 0000 | |||
| Description: | Opened: 2003-03-06 02:20 0000 |
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.